public void StartServerTest() { DummyAdbCommandLineClient commandLine = new DummyAdbCommandLineClient(); Assert.IsFalse(commandLine.ServerStarted); commandLine.StartServer(); Assert.IsTrue(commandLine.ServerStarted); }
public void GetVersionTest() { DummyAdbCommandLineClient commandLine = new DummyAdbCommandLineClient(); commandLine.Version = new Version(1, 0, 32); Assert.AreEqual(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 GetVersionNullTest() { DummyAdbCommandLineClient commandLine = new DummyAdbCommandLineClient(); commandLine.Version = null; commandLine.GetVersion(); }