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

            Assert.Throws <DomainException>(() => _fixture.PauseApprenticeship());
        }
 public void Arrange()
 {
     _fixture = new WhenPausingAnApprenticeshipFixture(PaymentStatus.Active);
 }