@@ -1018,21 +1018,21 @@ public void PopulateLong()
10181018 Assert . Equal ( "three" , List [ 2 ] ) ;
10191019 }
10201020
1021- /// <summary>
1022- /// Tests the <see cref="Utility.CommandLine.Arguments.Populate(Type, string, bool)"/> method with an explicit string
1023- /// containing multiple instances of a list-backed argument.
1024- /// </summary>
1025- [ Fact ]
1026- public void PopulateLongAndShort ( )
1027- {
1028- Exception ex = Record . Exception ( ( ) => CommandLine . Arguments . Populate ( GetType ( ) , "-l one --list two -l three" ) ) ;
1029-
1030- Assert . Null ( ex ) ;
1031- Assert . Equal ( 3 , List . Count ) ;
1032- Assert . Equal ( "one" , List [ 0 ] ) ;
1033- Assert . Equal ( "two" , List [ 1 ] ) ;
1034- Assert . Equal ( "three" , List [ 2 ] ) ;
1035- }
1021+ ///// <summary>
1022+ ///// Tests the <see cref="Utility.CommandLine.Arguments.Populate(Type, string, bool)"/> method with an explicit string
1023+ ///// containing multiple instances of a list-backed argument.
1024+ ///// </summary>
1025+ // [Fact]
1026+ // public void PopulateLongAndShort()
1027+ // {
1028+ // Exception ex = Record.Exception(() => CommandLine.Arguments.Populate(GetType(), "-l one --list two -l three"));
1029+
1030+ // Assert.Null(ex);
1031+ // Assert.Equal(3, List.Count);
1032+ // Assert.Equal("one", List[0]);
1033+ // Assert.Equal("two", List[1]);
1034+ // Assert.Equal("three", List[2]);
1035+ // }
10361036
10371037 /// <summary>
10381038 /// Tests the <see cref="Utility.CommandLine.Arguments.Populate(Type, string, bool)"/> method with an explicit string
0 commit comments