Unity_Learn/Library/PackageCache/com.unity.test-framework@a6f5be5f149c/UnityEngine.TestRunner/UnityTestProtocol/TestState.cs
2025-09-04 16:57:16 +09: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
}
}