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