暫無描述
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.

UnityWorkItemDataHolder.cs 284B

12345678910
  1. using System.Collections.Generic;
  2. namespace UnityEngine.TestRunner.NUnitExtensions.Runner
  3. {
  4. internal class UnityWorkItemDataHolder
  5. {
  6. public static List<string> alreadyStartedTests = new List<string>();
  7. public static List<string> alreadyExecutedTests;
  8. }
  9. }