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

RunState.cs 852B

123456789101112131415161718192021222324252627282930313233
  1. namespace UnityEditor.TestTools.TestRunner.Api
  2. {
  3. /// <summary>
  4. /// The RunState enum indicates whether a test can be executed.
  5. /// </summary>
  6. public enum RunState
  7. {
  8. /// <summary>
  9. /// The test is not runnable.
  10. /// </summary>
  11. NotRunnable,
  12. /// <summary>
  13. /// The test is runnable.
  14. /// </summary>
  15. Runnable,
  16. /// <summary>
  17. /// The test can only be run explicitly
  18. /// </summary>
  19. Explicit,
  20. /// <summary>
  21. /// The test has been skipped. This value may appear on a Test when certain attributes are used to skip the test.
  22. /// </summary>
  23. Skipped,
  24. /// <summary>
  25. /// The test has been ignored. May appear on a Test, when the IgnoreAttribute is used.
  26. /// </summary>
  27. Ignored,
  28. }
  29. }