ITestSettings.cs 718 B

12345678910111213141516171819202122
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner
  3. {
  4. internal interface ITestSettings : IDisposable
  5. {
  6. ScriptingImplementation? scriptingBackend { get; set; }
  7. string Architecture { get; set; }
  8. ApiCompatibilityLevel? apiProfile { get; set; }
  9. bool? appleEnableAutomaticSigning { get; set; }
  10. string appleDeveloperTeamID { get; set; }
  11. ProvisioningProfileType? iOSManualProvisioningProfileType { get; set; }
  12. string iOSManualProvisioningProfileID { get; set; }
  13. ProvisioningProfileType? tvOSManualProvisioningProfileType { get; set; }
  14. string tvOSManualProvisioningProfileID { get; set; }
  15. void SetupProjectParameters();
  16. }
  17. }