package com.blogspot.toomuchcoding.book.chapter4._3_StubbingMethodThatThrowsException.subsequent.assertj; import com.blogspot.toomuchcoding.book.chapter4.common.exception.InvalidTaxFactorException; import com.blogspot.toomuchcoding.book.chapter4.common.exception.TaxServiceUnavailableException; import com.blogspot.toomuchcoding.book.chapter4.common.returningvalue.MeanTaxFactorCalculator; import com.blogspot.toomuchcoding.book.chapter4.common.returningvalue.TaxFactorFetcher; import com.blogspot.toomuchcoding.common.testng.MockitoTestNGListener; import com.blogspot.toomuchcoding.person.Person; import org.mockito.InjectMocks; import org.mockito.Mock; import org.testng.annotations.Listeners; import org.testng.annotations.Test; import static com.googlecode.catchexception.apis.CatchExceptionAssertJ.thenThrown; import static com.googlecode.catchexception.apis.CatchExceptionAssertJ.when; import static org.mockito.BDDMockito.given; import static org.mockito.Matchers.any; @Listeners(MockitoTestNGListener.class) public class MeanTaxFactorCalculatorTestNgTest { @Mock TaxFactorFetcher taxFactorFetcher; @InjectMocks MeanTaxFactorCalculator systemUnderTest; @Test public void should_throw_exception_when_calculating_mean_tax_factor() { given(taxFactorFetcher.getTaxFactorFor(any(Person.class))).willThrow(new TaxServiceUnavailableException()).willThrow(new InvalidTaxFactorException()); when(systemUnderTest).calculateMeanTaxFactorFor(new Person()); thenThrown(TaxServiceUnavailableException.class); when(systemUnderTest).calculateMeanTaxFactorFor(new Person()); thenThrown(InvalidTaxFactorException.class); } }