Ejemplo n.º 1
0
 protected virtual void stop_test()
 {
     if (current_test == null)
     {
         return;
     }
     current_test.Cleanup();
     current_test = null;
     RND          = null;
 }
Ejemplo n.º 2
0
 void test_loop(ref ITestScenario test)
 {
     if (test.Update(RND))
     {
         return;
     }
     test.Cleanup();
     test = null;
 }