Files
Generic/Library/PackageCache/com.unity.test-framework@5ac417e07314/UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs

15 lines
346 B
C#
Raw Normal View History

2025-04-26 21:54:32 +01:00
namespace UnityEngine.TestRunner.TestProtocol
{
internal class TestStartedMessage : MessageForRetryRepeat
{
public string name;
public TestState state;
public TestStartedMessage()
{
type = "TestStatus";
phase = "Begin";
state = TestState.Inconclusive;
}
}
}