Beispiel #1
0
 public void Remove(ITestRoutine routine)
 {
     if (_routines.Contains(routine))
     {
         routine.Stop();
     }
 }
Beispiel #2
0
 public void Run()
 {
     CurrentState = TestStepState.Progress;
     _coroutine   = Context.Scheduler.StartCoroutine(OnRunStep());
 }
Beispiel #3
0
 public void Run(int testcase)
 {
     Stop();
     _testCaseRoutine = _context.Scheduler.StartCoroutine(RunTestCase(testcase));
 }