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.

TestRunProgress.cs 529B

123456789101112131415161718192021222324
  1. using System;
  2. using UnityEngine;
  3. namespace UnityEditor.TestTools.TestRunner.Api
  4. {
  5. [Serializable]
  6. internal class TestRunProgress
  7. {
  8. [SerializeField]
  9. public string RunGuid;
  10. [SerializeField]
  11. public ExecutionSettings ExecutionSettings;
  12. [SerializeField]
  13. public bool HasFinished;
  14. [SerializeField]
  15. public float Progress;
  16. [SerializeField]
  17. public string CurrentStepName;
  18. [SerializeField]
  19. public string CurrentStageName;
  20. }
  21. }