A game about forced loneliness, made by TACStudios
at master 14 lines 371 B view raw
1using System; 2using System.Collections; 3 4namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks 5{ 6 internal class CleanupConstructDelegatorTask : TestTaskBase 7 { 8 public override IEnumerator Execute(TestJobData testJobData) 9 { 10 testJobData.ConstructDelegator.DestroyCurrentTestObjectIfExists(); 11 yield break; 12 } 13 } 14}