示例#1
0
 TestResultAssembly runTest()
 {
     Debug.WriteLine(">>! running test");
     try
     {
         var testRunner = new DomainTestRunner(_config.AssemblyPath);
         return(testRunner.run());
     }
     catch (Exception e)
     {
         return(new TestResultAssembly(_config.AssemblyPath, e));
     }
 }
示例#2
0
 TestResultAssembly runTest()
 {
     Debug.WriteLine(">>! running test");
     try
     {
         var testRunner = new DomainTestRunner(_config.AssemblyPath);
         return testRunner.run();
     }
     catch (Exception e)
     {
         return new TestResultAssembly(_config.AssemblyPath, e);
     }
 }