示例#1
0
        When_formatting_command_line_with_Single_style_Then_it_should_return_Value_string_without_prefix()
        {
            var sut = new PositionalArgument("Value");

            IEnumerable <string> commandLine = sut.FormatCommandLine("---", CommandLineArgumentStyle.SingleWithEqualsSignDelimiter);

            commandLine.Should().Equal("Value");
        }