Rasagar/Library/PackageCache/com.unity.test-framework/UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs

15 lines
346 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
namespace UnityEngine.TestRunner.TestProtocol
{
internal class TestStartedMessage : MessageForRetryRepeat
{
public string name;
public TestState state;
public TestStartedMessage()
{
type = "TestStatus";
phase = "Begin";
state = TestState.Inconclusive;
}
}
}