No Description
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.

TestFinishedMessage.cs 522B

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