Net-Game/Library/PackageCache/com.unity.test-framework@5ac417e07314/UnityEngine.TestRunner/UnityTestProtocol/TestState.cs
2025-03-28 08:33:16 -04:00

12 lines
217 B
C#

namespace UnityEngine.TestRunner.TestProtocol
{
internal enum TestState
{
Inconclusive = 0,
Skipped = 2,
Ignored = 3,
Success = 4,
Failure = 5,
Error = 6
}
}