Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

TestStatus.cs 605B

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