VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.test-framework/UnityEditor.TestRunner/TestRun/ITestJobRunner.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +03:00

13 lines
247 B
C#

using System;
namespace UnityEditor.TestTools.TestRunner.TestRun
{
internal interface ITestJobRunner
{
string RunJob(TestJobData data);
bool CancelRun();
bool IsRunningJob();
TestJobData GetData();
}
}