假设我有一个非最终的具体类,其最终方法如下所示。
public class ABC {
public final String myMethod(){
return "test test";
}
}
是否可以模仿myMethod()
使用junit
在Powermockito
中调用其他内容时返回其他内容?谢谢
答案 0 :(得分:25)
这有效:
@RunWith(PowerMockRunner.class)
@PrepareForTest(ABC.class)
public class ABCTest {
@Test
public void finalCouldBeMock() {
final ABC abc = PowerMockito.mock(ABC.class);
PowerMockito.when(abc.myMethod()).thenReturn("toto");
assertEquals("toto", abc.myMethod());
}
}