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

12 lines
326 B
C#

namespace UnityEditor.TestTools.TestRunner.CommandLineTest
{
internal interface IRunData
{
bool IsRunning { get; set; }
ExecutionSettings ExecutionSettings { get; set; }
string RunId { get; set; }
TestRunState RunState { get; set; }
string RunErrorMessage { get; set; }
}
}