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

TestFinishedMessage.cs 567B

1234567891011121314151617181920212223
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
  3. {
  4. internal class TestFinishedMessage : Message
  5. {
  6. public string name;
  7. public TestState state;
  8. public string message;
  9. public ulong duration; // milliseconds
  10. public ulong durationMicroseconds;
  11. public string stackTrace;
  12. public string fileName;
  13. public int lineNumber;
  14. public int iteration;
  15. public TestFinishedMessage()
  16. {
  17. type = "TestStatus";
  18. phase = "End";
  19. }
  20. }
  21. }