PowerMock throws org.powermock.reflect.exceptions.MethodNotFoundException: No methods matching the name(s) methodInsideFoo were found in the class hierarchy of class com.something.Something..

Test code:

    Something spied = spy(new Something());

    doNothing().when( spied, "methodInsideFoo", "ABC", Some.class );

    spied.foo( "ABC", Some.class );

    verifyPrivate( spied ).invoke( "methodInsideFoo", "ABC", Some.class );

And this is the method I'm trying to mock:

protected void methodInsideFoo ( String a, Class b )
{
    System.out.println("Should not see me");
}

But if I remove Class (2nd parameter), it works. Am I missing something?

link|improve this question

80% accept rate
feedback

1 Answer

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.