penis/Library/PackageCache/com.unity.test-framework@f4d49bd0d832/UnityEngine.TestRunner/UnityTestProtocol/TestState.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +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
}
}