public void Init(IAdjustCommandExecutor adjustCommandExecutor, string baseUrl, Action <string> logDelegate = null)
        {
            _logDelegate = logDelegate;
            Log("Initializing...");

            var localIp = GetLocalIp();

            Log("Local IP: " + localIp);

            var commandListener = new WindowsCommandListener(adjustCommandExecutor);

            Log("Setting AdjustFactory.BaseUrl to: " + baseUrl);
            _testLibrary = new TestLibrary.TestLibrary(baseUrl, commandListener, localIp, _logDelegate);
            Log("Init finished.");
        }
 public WindowsCommandListener(IAdjustCommandExecutor adjustCommandExecutor)
 {
 }
예제 #3
0
 public void Init(IAdjustCommandExecutor adjustCommandExecutor, string baseUrl, string controlUrl, Action <string> logDelegate = null)
 {
 }