Unity_2lab/2/Library/PackageCache/com.unity.test-framework@16d3eb9e8c28/UnityEngine.TestRunner/UnityTestProtocol/TestState.cs
2025-09-23 00:05:35 +03: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
}
}