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