使用 PowerMock(使用 Mockito)时,我们是否需要模拟类的所有静态方法?我的意思是,假设我们有:
class MockMe {
public static MockMe getInstance(){
//return new Instance via complex process;
}
public static List<X> anotherStaticMethod(){
// does xyz
}
}
我的问题是,如果我需要模拟 getInstance 方法,是否也需要模拟“anotherStaticMethod”?
PowerMock 版本:1.3,Mockito 版本:1.8