File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
tests/CommandLine.Tests/Unit/Core Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -907,6 +907,13 @@ public static void Parse_to_type_with_single_string_ctor_builds_up_correct_insta
907907
908908 [ Theory ]
909909 [ InlineData ( new [ ] { "--stringvalue" , "x-" } , "x-" ) ]
910+ [ InlineData ( new [ ] { "--stringvalue" , "x--" } , "x--" ) ]
911+ [ InlineData ( new [ ] { "--stringvalue" , "x---" } , "x---" ) ]
912+ [ InlineData ( new [ ] { "--stringvalue=x-x" } , "x-x" ) ]
913+ [ InlineData ( new [ ] { "--stringvalue=x--x" } , "x--x" ) ]
914+ [ InlineData ( new [ ] { "--stringvalue=x---x" } , "x---x" ) ]
915+ [ InlineData ( new [ ] { "--stringvalue" , "5366ebc4-7aa7-4d5a-909c-a415a291a5ad" } , "5366ebc4-7aa7-4d5a-909c-a415a291a5ad" ) ]
916+ [ InlineData ( new [ ] { "--stringvalue=5366ebc4-7aa7-4d5a-909c-a415a291a5ad" } , "5366ebc4-7aa7-4d5a-909c-a415a291a5ad" ) ]
910917 public void Parse_string_with_dashes_except_in_beginning ( string [ ] arguments , string expected )
911918 {
912919 // Fixture setup in attributes
You can’t perform that action at this time.
0 commit comments