Exemple #1
0
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new TfxExtensionInstallRunnerFixture();

                fixture.GivenProcessCannotStart();
                fixture.GivenSingleAccount();

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("Tfx: Process was not started.", result.Message);
            }