Esempio n. 1
0
        private void StartNextTest()
        {
            MOneTestConfiguration nextTestConfiguration = GetNextTest();

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