TestResultState.cs 664 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. namespace UnityTest
  2. {
  3. public enum TestResultState
  4. {
  5. Inconclusive = 0,
  6. /// <summary>
  7. /// The test was not runnable.
  8. /// </summary>
  9. NotRunnable = 1,
  10. /// <summary>
  11. /// The test has been skipped.
  12. /// </summary>
  13. Skipped = 2,
  14. /// <summary>
  15. /// The test has been ignored.
  16. /// </summary>
  17. Ignored = 3,
  18. /// <summary>
  19. /// The test succeeded
  20. /// </summary>
  21. Success = 4,
  22. /// <summary>
  23. /// The test failed
  24. /// </summary>
  25. Failure = 5,
  26. /// <summary>
  27. /// The test encountered an unexpected exception
  28. /// </summary>
  29. Error = 6,
  30. /// <summary>
  31. /// The test was cancelled by the user
  32. /// </summary>
  33. Cancelled = 7
  34. }
  35. }