MIF_E31222586/Library/PackageCache/com.unity.test-framework@c1.../UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs

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