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