blob: f5b97a4155bfb04464294ebf82f5181d441bde82 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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; }
void SetupProjectParameters();
}
}
|