我有一个方法,它发布到 API,然后在方法内调用后执行其他业务逻辑。如果在发布到 API 时由于任何原因出现问题,API 将返回异常。我不想捕获此异常,因为我不希望代码继续执行。到目前为止,在我的单元测试中,我已经模拟了 API 并编写了when(APIService.postDetails(any())).thenThrow(Exception.class)
并断言我已经验证了一些方法已通过 mockito 中的 verify
方法调用了 0 次。
当我尝试运行测试时,测试失败。 我得到了预期的java.lang.Exception
,但我也期待单元测试在验证时断言。可能吗?
测试:
@Test
public void shouldCallPublishZeroTimes(){
Account account = Account.builder()
.street("ZBC123")
.address("123456")
.postcode("w19uu")
.build();
List<Account> accountList = new ArrayList<>();
accountList.add(account);
when(customerDB.getExistingClient(any())).thenThrow(Exception.class);
client.createAccount();
verify(eventPublisher, times(0)).publish(any());
}
在过去的我做过这件事:
@Test
public void shouldCallPublishZeroTimes(){
Account account = Account.builder()
.street("ZBC123")
.address("123456")
.postcode("w19uu")
.build();
List<Account> accountList = new ArrayList<>();
accountList.add(account);
when(customerDB.getExistingClient(any())).thenThrow(Exception.class);
try {
client.createAccount();
fail();
} catch (Exception e) {
verify(eventPublisher, times(0)).publish(any());
}
}