bea2dce063
test
18 lines
425 B
C#
18 lines
425 B
C#
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 TestFinishedMessage()
|
|
{
|
|
type = "TestStatus";
|
|
phase = "End";
|
|
}
|
|
}
|
|
}
|