public void Should_Throw_If_Process_Was_Not_Started() { // Given var fixture = new ChocolateyInstallerFixture(); fixture.GivenProcessCannotStart(); // When var result = Record.Exception(() => fixture.Install()); // Then Assert.IsCakeException(result, "Chocolatey: Process was not started."); }