A game about forced loneliness, made by TACStudios
1using System;
2using System.Collections;
3using NUnit.Framework;
4
5namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
6{
7 internal class CleanUpContext : TestTaskBase
8 {
9 public override IEnumerator Execute(TestJobData testJobData)
10 {
11 testJobData.Context = null;
12 TestContext.CurrentTestExecutionContext = null;
13 yield break;
14 }
15 }
16}