VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.test-framework/UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +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;
}
}
}