我想要模拟一个支持类的静态方法,为了做到这一点,我需要使用jMockit模拟一个被测试类的方法。在下面的例子中,我想模拟方法canContinue,以便始终进入if条件。我还想模拟静态方法并验证之后发生的一切。
public class UnitToTest {
public void execute() {
Foo foo = //
Bar bar = //
if (canContinue(foo, bar)) {
Support.runStaticMethod(f);
// Do other stuff here that I would like to verify
}
}
public boolean canContinue(Foo f, Bar b) {
//Logic which returns boolean
}
}
我的测试方法如下所示:
@Test
public void testExecuteMethod() {
// I would expect any invocations of the canContinue method to
// always return true for the duration of the test
new NonStrictExpectations(classToTest) {{
invoke(classToTest, "canContinue" , new Foo(), new Bar());
result = true;
}};
// I would assume that all invocations of the static method
// runStaticMethod return true for the duration of the test
new NonStrictExpectations(Support.class) {{
Support.runStaticMethod(new Foo());
result = true;
}};
new UnitToTest().execute();
//Verify change in state after running execute() method
}
我在这里做错了什么?更改canContinue方法返回false的第一个期望不会影响代码的执行是否在if条件内。
答案 0 :(得分:1)
你正在嘲笑一个实例(classToTest
),然后再行使另一个(new UnitToTest().execute()
) not 嘲笑;这是错的。
此外,测试不应使用invoke(..."canContinue"...)
,因为canContinue
方法为public
。但实际上,这种方法根本不应该被嘲笑;测试应该准备好所需的状态,以便canContinue(foo, bar)
返回所需的值。