study/first_study/Library/PackageCache/com.unity.test-framework@0b7a23ab2e1d/UnityEngine.TestRunner/UnityTestProtocol/TestFinishMessage.cs
jh04010421 739d49f1a0 Unity | 2026.01.20
수업 실습 파일
2026-01-20 11:01:57 +09: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";
}
}
}