File size: 862 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | using System;
namespace UnityEditor.TestTools.TestRunner
{
internal interface ITestSettings : IDisposable
{
ScriptingImplementation? scriptingBackend { get; set; }
string Architecture { get; set; }
ApiCompatibilityLevel? apiProfile { get; set; }
bool? appleEnableAutomaticSigning { get; set; }
string appleDeveloperTeamID { get; set; }
ProvisioningProfileType? iOSManualProvisioningProfileType { get; set; }
string iOSManualProvisioningProfileID { get; set; }
ProvisioningProfileType? tvOSManualProvisioningProfileType { get; set; }
string tvOSManualProvisioningProfileID { get; set; }
string[] playerGraphicsAPIs { get; set; }
bool autoGraphicsAPIs { get; set; }
bool? androidBuildAppBundle { get; set; }
void SetupProjectParameters();
}
}
|