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.

RunState.cs 864B

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