暂无描述
您最多选择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. }