예제 #1
0
 public void AddTestDirectory(string testDirectory)
 {
     TestLibraryBridgeiOS.AddTestDirectory(testDirectory);
 }
예제 #2
0
 public void SendInfoToServer(string basePath)
 {
     TestLibraryBridgeiOS.SendInfoToServer(basePath);
 }
예제 #3
0
 public void AddTest(string testName)
 {
     TestLibraryBridgeiOS.AddTest(testName);
 }
예제 #4
0
 public void AddInfoToSend(string key, string paramValue)
 {
     TestLibraryBridgeiOS.AddInfoToSend(key, paramValue);
 }
예제 #5
0
 public void StartTestSession()
 {
     TestApp.Log("TestLibrary -> StartTestSession()");
     TestLibraryBridgeiOS.StartTestSession(Adjust.getSdkVersion());
 }
예제 #6
0
 public TestLibraryiOS(string baseUrl, string gdprUrl, string subscriptionUrl, string controlUrl)
 {
     _commandExecutor = new CommandExecutor(this, baseUrl, gdprUrl, subscriptionUrl);
     TestLibraryBridgeiOS.Initialize(baseUrl, controlUrl);
 }
예제 #7
0
 public TestLibraryiOS(string baseUrl, string gdprUrl)
 {
     _commandExecutor = new CommandExecutor(this, baseUrl, gdprUrl);
     TestLibraryBridgeiOS.Initialize(baseUrl);
 }
예제 #8
0
 public void StartTestSession()
 {
     TestApp.Log("TestFactory -> StartTestSession()");
     TestLibraryBridgeiOS.StartTestSession(TestApp.CLIENT_SDK);
 }