diff --git a/src/Platform/Microsoft.Testing.Platform/CommandLine/CommandLineOption.cs b/src/Platform/Microsoft.Testing.Platform/CommandLine/CommandLineOption.cs index 32dfc8070c..50af528077 100644 --- a/src/Platform/Microsoft.Testing.Platform/CommandLine/CommandLineOption.cs +++ b/src/Platform/Microsoft.Testing.Platform/CommandLine/CommandLineOption.cs @@ -41,6 +41,19 @@ internal CommandLineOption(string name, string description, ArgumentArity arity, ObsolescenceMessage = obsolescenceMessage; } + /// + /// Initializes a new instance of the class. + /// + /// The name of the command line option. + /// The description of the command line option. + /// The arity of the command line option. + /// Indicates whether the command line option is hidden. + /// Indicates whether the command line option is built-in. + internal CommandLineOption(string name, string description, ArgumentArity arity, bool isHidden, bool isBuiltIn) + : this(name, description, arity, isHidden, isBuiltIn, null) + { + } + /// /// Initializes a new instance of the class. ///