File size: 522 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 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 string fileName;
public int lineNumber;
public TestFinishedMessage()
{
type = "TestStatus";
phase = "End";
}
}
}
|