No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CleanUpContext.cs 400B

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