public void GetVersionNullTest() { DummyAdbCommandLineClient commandLine = new DummyAdbCommandLineClient(); commandLine.Version = null; Assert.Throws <AdbException>(() => commandLine.GetVersion()); }
public void GetVersionNullTest() { DummyAdbCommandLineClient commandLine = new DummyAdbCommandLineClient(); commandLine.Version = null; commandLine.GetVersion(); }
public void StartServerTest() { DummyAdbCommandLineClient commandLine = new DummyAdbCommandLineClient(); Assert.False(commandLine.ServerStarted); commandLine.StartServer(); Assert.True(commandLine.ServerStarted); }
public void GetOutdatedVersionTest() { DummyAdbCommandLineClient commandLine = new DummyAdbCommandLineClient(); commandLine.Version = new Version(1, 0, 1); Assert.Throws <AdbException>(() => commandLine.GetVersion()); }
public void GetVersionTest() { DummyAdbCommandLineClient commandLine = new DummyAdbCommandLineClient(); commandLine.Version = new Version(1, 0, 32); Assert.Equal(new Version(1, 0, 32), commandLine.GetVersion()); }
public void GetOutdatedVersionTest() { DummyAdbCommandLineClient commandLine = new DummyAdbCommandLineClient(); commandLine.Version = new Version(1, 0, 1); commandLine.GetVersion(); }
public void Initialize() { Factories.Reset(); this.socket = new DummyAdbSocket(); Factories.AdbSocketFactory = (endPoint) => this.socket; this.commandLineClient = new DummyAdbCommandLineClient(); Factories.AdbCommandLineClientFactory = (version) => this.commandLineClient; }
public void Initialize() { this.socket = new DummyAdbSocket(); this.adbSocketFactory = (endPoint) => this.socket; this.commandLineClient = new DummyAdbCommandLineClient(); this.adbCommandLineClientFactory = (version) => this.commandLineClient; this.adbClient = new AdbClient(AdbClient.DefaultEndPoint, this.adbSocketFactory); this.adbServer = new AdbServer(this.adbClient, this.adbCommandLineClientFactory); }