Inheritance: WindowsPhoneTestFramework.Server.DeviceController.ParsedObject
        public AdbDeviceController(AdbDeviceControllerConfiguration configuration)
        {
            _configuration = configuration;

            // for now hard code the windows emulator display input controller...
            DisplayInputController = new AdbEmulatorDisplayInputController();
        }
        public AdbDeviceController(AdbDeviceControllerConfiguration configuration)
        {
            _configuration = configuration;

            // for now hard code the windows emulator display input controller...
            DisplayInputController = new AdbEmulatorDisplayInputController();
        }
 private void StartDriver(ParsedInitialisationString parsedInitialisationString)
 {
     var driverConfiguration = new AdbDeviceControllerConfiguration(parsedInitialisationString.Fields);
     var driver = new AdbDeviceController(driverConfiguration);
     driver.Trace += (sender, args) => InvokeTrace(args);
     if (!driver.TryConnect())
         throw new AutomationException("Unable to connect to Android emulator driver");
     DeviceController = driver;
 }