public void Should_Throw_If_GitReleaseManager_Executable_Was_Not_Found() { // Given var fixture = new GitReleaseManagerExporterFixture(); fixture.GivenDefaultToolDoNotExist(); // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsCakeException(result, "GitReleaseManager: Could not locate executable."); }