Firstborn/Library/PackageCache/com.unity.test-framework@1..../UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

16 lines
348 B
C#

namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
{
internal class TestStartedMessage : Message
{
public string name;
public TestState state;
public TestStartedMessage()
{
type = "TestStatus";
phase = "Begin";
state = TestState.Inconclusive;
}
}
}