public CommandExecutor(ITestLibrary testLibrary, string baseUrl, string gdprUrl, string subscriptionUrl)
 {
     _baseUrl         = baseUrl;
     _gdprUrl         = gdprUrl;
     _subscriptionUrl = subscriptionUrl;
     _testLibrary     = testLibrary;
 }
Exemple #2
0
        private void StartTestSession()
        {
            ITestLibrary testLibrary = GetPlatformSpecificTestLibrary();

#if UNITY_IOS
            _testLibraryiOS = testLibrary as TestLibraryiOS;
#endif
            // Set specific tests to run.
            // testLibrary.AddTest("current/eventBuffering/Test_EventBuffering_sensitive_packets");
            // testLibrary.AddTest("current/gdpr/Test_GdprForgetMe_after_install");
            // testLibrary.AddTestDirectory ("current/deeplink-deferred");

            Log("Starting test session.");
            testLibrary.StartTestSession();
        }