暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }