如何使用JMockit模拟ResultSet方法next()和getString()?

时间:2014-07-30 15:21:26

标签: java testing resultset jmockit

我目前正在使用调用类来实现我当前的测试要求,但是随着需要添加更多条件,这些将变得非常混乱,有没有人知道一些更好的解决方案? @罗杰里奥

@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;
        }

0 个答案:

没有答案