xyi/Library/PackageCache/com.unity.test-framework@f4d49bd0d832/UnityEditor.TestRunner/TestRun/Tasks/CleanUpContext.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

17 lines
400 B
C#

using System;
using System.Collections;
using NUnit.Framework;
namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
{
internal class CleanUpContext : TestTaskBase
{
public override IEnumerator Execute(TestJobData testJobData)
{
testJobData.Context = null;
TestContext.CurrentTestExecutionContext = null;
yield break;
}
}
}