StellarXipher/Library/PackageCache/com.unity.test-framework@0a21eb82d95c/UnityEngine.TestRunner/UnityTestProtocol/TestState.cs
2025-02-06 16:45:46 -05: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
}
}