我目前正在使用调用类来实现我当前的测试要求,但是随着需要添加更多条件,这些将变得非常混乱,有没有人知道一些更好的解决方案? @罗杰里奥
@Mock
boolean next(Invocation in) {
logger.info("invocation count" + in.getInvocationCount());
if (in.getInvocationCount() % 2 == 0 && in.getInvocationCount() != 1) {
logger.info("from resultset" + in.getInvocationCount());
return false;
}
return true;
}