SquareDash/Library/PackageCache/com.unity.test-framework@1.3.9/UnityEditor.TestRunner/UnityTestProtocol/Messages/TestStartedMessage.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

18 lines
363 B
C#

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