Powermock模拟私有方法,但不执行私有方法



如何模拟由公共方法调用的私有方法,但我不希望私有方法的代码执行:代码:

@RunWith(PowerMockRunner.class)
@PrepareForTest(B.class)
public class A {
    public static void main(String[] args) throws Exception{
        B b = PowerMockito.spy(new B());
        PowerMockito.doReturn("test").when(b,"test");
       // MY PROBLEM: 
       // there: console print "test method" 
       // i just want return "test"  and don't real execute test()
        String t = b.print(); 
        System.out.println(t);
}

}

class B{
    public String print(){
        System.out.println("pp method");
        return test();
    }
    private String test(){
        System.out.println("test method");  
        return "t";
    }

}

我已经解决了这个问题!只是:模拟(B.class)doCallRealMethod()当(…).withArguments(…)

不要使用spy()

谢谢。

相关内容

  • 没有找到相关文章

最新更新