Files

12 lines
326 B
C#
Raw Normal View History

2025-01-17 13:10:42 +01:00
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; }
}
}