我有一个静态方法,用于多个地方,主要是在静态初始化块中。它接受一个 Class 对象作为参数,并返回该类的实例。我只想在特定的 Class 对象用作参数时模拟这个静态方法。但是当从其他地方调用该方法时,使用不同的Class对象,它返回null。
如果参数不是模拟参数,我们如何让静态方法执行实际实现?
class ABC{
void someMethod(){
Node impl = ServiceFactory.getImpl(Node.class); //need to mock this call
impl.xyz();
}
}
class SomeOtherClass{
static Line impl = ServiceFactory.getImpl(Line.class); //the mock code below returns null here
}
class TestABC{
@Mocked ServiceFactory fact;
@Test
public void testSomeMethod(){
new NonStrictExpectations(){
ServiceFactory.getImpl(Node.class);
returns(new NodeImpl());
}
}
}