package com.blogspot.toomuchcoding.book.chapter5._5_StubbingVoidMethodThatThrowsException.assertj; import com.blogspot.toomuchcoding.book.chapter5.voidmethod.PersonDataUpdator; import com.blogspot.toomuchcoding.book.chapter5.voidmethod.TaxFactorService; import com.blogspot.toomuchcoding.common.testng.MockitoTestNGListener; import com.blogspot.toomuchcoding.person.Person; import org.mockito.InjectMocks; import org.mockito.Spy; import org.testng.annotations.Listeners; import org.testng.annotations.Test; import java.net.ConnectException; import static com.googlecode.catchexception.CatchException.caughtException; import static com.googlecode.catchexception.apis.CatchExceptionAssertJ.then; import static com.googlecode.catchexception.apis.CatchExceptionAssertJ.when; import static org.mockito.BDDMockito.*; @Listeners(MockitoTestNGListener.class) public class PersonDataUpdatorTestNgTest { @Spy TaxFactorService taxFactorService; @InjectMocks PersonDataUpdator systemUnderTest; @Test public void should_fail_to_update_tax_factor_for_person_due_to_connection_issues() throws ConnectException { willThrow(ConnectException.class).given(taxFactorService).updateMeanTaxFactor(any(Person.class), anyDouble()); when(systemUnderTest).processTaxDataFor(new Person()); then(caughtException()).hasCauseInstanceOf(ConnectException.class); } }