Files
SpaceDroid/My project/Library/PackageCache/com.unity.test-framework/UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs
2025-01-17 13:10:42 +01: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;
}
}
}