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.

TestProgress.cs 688B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. namespace UnityEditor.TestTools.TestRunner.TestRun
  6. {
  7. [Serializable]
  8. internal class TestProgress
  9. {
  10. [SerializeField]
  11. public string CurrentTest;
  12. [SerializeField]
  13. public string[] AllTestsToRun;
  14. [SerializeField]
  15. public List<string> RemainingTests;
  16. [SerializeField]
  17. public List<string> CompletedTests;
  18. public TestProgress(string[] allTestsToRun)
  19. {
  20. AllTestsToRun = allTestsToRun;
  21. RemainingTests = allTestsToRun.ToList();
  22. CompletedTests = new List<string>();
  23. }
  24. }
  25. }