static void runTest(ITestThingy test)
 {
     test.Running = true;
     test.Run();
     while (test.Running)
     {
         ;
     }
 }
Exemple #2
0
 static void runTest(ITestThingy test)
 {
     test.Running = true;
     test.Run();
     while (test.Running) ;
 }