我有一个测试用例,其中我正在使用执行程序服务并调用许多可调用线程。这些线程可能会导致调用成功或可能会给出异常(这是预期的行为)。
我需要断言,将来的对象会抛出异常或返回正确的响应。
for(Future<Resp> future : futureList) {
Assertions.assertThatThrownBy(() ->
futureResponse.get()).isInstanceOf(ExecutionException.class);
// or
Assertions.assertThat(futureResponse.get()).isEqualTo(RespObj);
}
我如何断言这种“或”行为?
最佳答案
您可以使用try catch
块:
for(Future<Resp> future : futureList) {
try {
Assertions.assertThat(futureResponse.get()).isEqualTo(RespObj);
} catch (Throwable e) {
Assertions.assertThat(e).isInstanceOf(ExecutionException.class);
}
}
关于java - AssertJ断言抛出异常或结果,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48536651/