Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. namespace UnityEditor.TestTools.TestRunner.CommandLineTest
  2. {
  3. internal interface IRunData
  4. {
  5. bool IsRunning { get; set; }
  6. ExecutionSettings ExecutionSettings { get; set; }
  7. string RunId { get; set; }
  8. TestRunState RunState { get; set; }
  9. string RunErrorMessage { get; set; }
  10. }
  11. }