暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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