arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.test-framework@038a2b0cacd2/UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02: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;
}
}
}