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

123456789101112
  1. namespace UnityEngine.TestRunner.TestProtocol
  2. {
  3. internal enum TestState
  4. {
  5. Inconclusive = 0,
  6. Skipped = 2,
  7. Ignored = 3,
  8. Success = 4,
  9. Failure = 5,
  10. Error = 6
  11. }
  12. }