Powermockito能否在非最终混凝土类中模拟最终方法?
2022-09-03 00:27:22
假设我有一个非最终的具体类,其最终方法如下。
public class ABC {
public final String myMethod(){
return "test test";
}
}
是否可以模拟在使用时返回其他内容?谢谢myMethod()
junit
Powermockito
假设我有一个非最终的具体类,其最终方法如下。
public class ABC {
public final String myMethod(){
return "test test";
}
}
是否可以模拟在使用时返回其他内容?谢谢myMethod()
junit
Powermockito
这有效:
@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());
}
}