forked from BilalY/Rasagar
18 lines
457 B
C#
18 lines
457 B
C#
|
namespace UnityEngine.TestRunner.TestProtocol
|
||
|
{
|
||
|
internal class TestFinishedMessage : MessageForRetryRepeat
|
||
|
{
|
||
|
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";
|
||
|
}
|
||
|
}
|
||
|
}
|