VR4Medical/ICI/Library/PackageCache/com.unity.test-framework@7056e7f856e9/UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs
2025-07-29 13:45:50 +03:00

15 lines
346 B
C#

namespace UnityEngine.TestRunner.TestProtocol
{
internal class TestStartedMessage : MessageForRetryRepeat
{
public string name;
public TestState state;
public TestStartedMessage()
{
type = "TestStatus";
phase = "Begin";
state = TestState.Inconclusive;
}
}
}