标签: unit-testing junit mockito powermock
是否可以对已注入的受测试者的父类的方法调用“ noNothing”? 当“ super.someMethod(fileName);”不做任何事情被称为
public class testclass{ @InjectMocks private SomeClass testee; @Override protected void method(String fileName){ super.someMethod(fileName); ... }