xyi/Library/PackageCache/com.unity.test-framework@f4d49bd0d832/UnityEngine.TestRunner/UnityTestProtocol/TestFinishMessage.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

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";
}
}
}