TestFinishedMessage.cs 459 B

123456789101112131415161718
  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 TestFinishedMessage()
  12. {
  13. type = "TestStatus";
  14. phase = "End";
  15. }
  16. }
  17. }