private void StartNextTest() { MOneTestConfiguration nextTestConfiguration = GetNextTest(); _currentScenarioDirector = StartTest(nextTestConfiguration); Debug.Log($"M512 Starting test {(_fullTestsCount)-_configurations.Count}/{_fullTestsCount} : {nextTestConfiguration.TestName}"); }
public void Update() { if (AnyTestActive()) { if (CurrentTestFinished()) { if (AnyMoreTests()) { FinalizeCurrentTest(); StartNextTest(); } else { Debug.Log("M632 Testing ended"); _currentScenarioDirector = null; } } } }