Rasagar/Library/PackageCache/com.unity.test-framework/UnityEngine.TestRunner/UnityTestProtocol/TestFinishMessage.cs

18 lines
457 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
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";
}
}
}