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