RunState.cs 179 B

1234567891011
  1. namespace UnityEditor.TestTools.TestRunner.Api
  2. {
  3. public enum RunState
  4. {
  5. NotRunnable,
  6. Runnable,
  7. Explicit,
  8. Skipped,
  9. Ignored,
  10. }
  11. }