No Description
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.

PlayerLauncherTestRunSettings.cs 375B

12345678910111213141516171819
  1. using UnityEditor.TestTools.TestRunner.Api;
  2. namespace UnityEditor.TestTools.TestRunner
  3. {
  4. class PlayerLauncherTestRunSettings : ITestRunSettings
  5. {
  6. public bool buildOnly { set; get; }
  7. public string buildOnlyLocationPath { set; get; }
  8. public void Dispose()
  9. {
  10. }
  11. void ITestRunSettings.Apply()
  12. {
  13. }
  14. }
  15. }