暫無描述
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.

12345678910111213
  1. namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
  2. {
  3. // This matches the state definitions expected by the Perl code, which in turn matches the NUnit 2 values...
  4. internal enum TestState
  5. {
  6. Inconclusive = 0,
  7. Skipped = 2,
  8. Ignored = 3,
  9. Success = 4,
  10. Failure = 5,
  11. Error = 6
  12. }
  13. }