public void AndPaymentStatusIsAlreadyNotActive_ThenExceptionIsThrown()
        {
            _fixture = new WhenPausingAnApprenticeshipFixture(PaymentStatus.Paused);

            Assert.Throws <DomainException>(() => _fixture.PauseApprenticeship());
        }
        public void ThenPaymentStatusShouldBeSetToPaused()
        {
            _fixture.PauseApprenticeship();

            _fixture.Apprenticeship.PaymentStatus.Should().Be(PaymentStatus.Paused);
        }