public void Should_Throw_If_Process_Was_Not_Started() { // Given var fixture = new FastlanePilotFixture(); fixture.GivenProcessCannotStart(); // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsType <CakeException>(result); Assert.Equal("fastlane: Process was not started.", result?.Message); }