A game about forced loneliness, made by TACStudios
1using System; 2using System.Collections; 3using UnityEngine; 4 5namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks.Events 6{ 7 internal class RunStartedInvocationEvent : TestTaskBase 8 { 9 public override IEnumerator Execute(TestJobData testJobData) 10 { 11 if (testJobData.testTree == null) 12 { 13 throw new Exception("TestTree must be set before run started event."); 14 } 15 testJobData.RunStartedEvent.Invoke(testJobData.testTree); 16 yield break; 17 } 18 } 19}