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.

TestStatus.cs 619B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.Api
  3. {
  4. /// <summary>
  5. /// The TestStatus enum indicates the test result status.
  6. /// </summary>
  7. public enum TestStatus
  8. {
  9. /// <summary>
  10. /// The test ran with an inconclusive result.
  11. /// </summary>
  12. Inconclusive,
  13. /// <summary>
  14. /// The test was skipped.
  15. /// </summary>
  16. Skipped,
  17. /// <summary>
  18. /// The test ran and passed.
  19. /// </summary>
  20. Passed,
  21. /// <summary>
  22. /// The test ran and failed.
  23. /// </summary>
  24. Failed
  25. }
  26. }