예제 #1
0
 public void InvalidCommandLineParametersThrow()
 {
     using (var testBootStrapper = new TestBootStrapper(GetType()))
     {
         string[] args   = { "12;13;14;15", "12" };
         var      target = new ArgumentsParser();
         Assert.Throws <InvalidCommandParameterFormatException>(() =>
         {
             var actual = target.GetCommandLineParameters(args);
         });
     }
 }