public void Should_Set_Working_Directory() { // Given var fixture = new GenymotionLicenseInfoFixture(); // When var result = fixture.Run(); // Then Assert.Equal("/Working", result.Process.WorkingDirectory.FullPath); }
public void Should_Find_Genymotion_If_Tool_Path_Not_Provided() { // Given var fixture = new GenymotionLicenseInfoFixture(); // When var result = fixture.Run(); // Then Assert.Equal("/Working/tools/gmtool.exe", result.Path.FullPath); }
public void Should_Add_License_Info_Argument() { // Given var fixture = new GenymotionLicenseInfoFixture(); // When var result = fixture.Run(); // Then result.Args.Should().Be("license info"); }
public void Should_Add_Verbose_Flag_To_Arguments_If_Set(bool verbose, string expected) { // Given var fixture = new GenymotionLicenseInfoFixture(); fixture.Settings.Verbose = verbose; // When var result = fixture.Run(); // Then result.Args.Should().Be(expected); }
public void Should_Add_Timeout_Flag_To_Arguments_If_Set(int?timeout, string expected) { // Given var fixture = new GenymotionLicenseInfoFixture(); fixture.Settings.Timeout = timeout; // When var result = fixture.Run(); // Then result.Args.Should().Be(expected); }
public void Should_Use_Genymotion_Runner_From_Tool_Path_If_Provided(string toolPath, string expected) { // Given var fixture = new GenymotionLicenseInfoFixture { Settings = { ToolPath = toolPath } }; fixture.GivenSettingsToolPathExist(); // When var result = fixture.Run(); // Then result.Path.FullPath.Should().Be(expected); }