I have a class which have some methods like in the example.

public class TestClass {

    public boolean aMethod()
    {
        voidMethod();
        return true;
    }

    private void voidMethod()
    {
        ... does something ...
    }

    ... other methods ...
}

I want to test aMethod with powermock and all methods should work normally except the voidMethod. I've created a partial mock of TestClass to make voidMethod do nothing.But I don't know how to expect call of this method.

testObject = createPartialMock(TestClass.class, "voidMethod");
expectPrivate(testObject, "voidMethod");

I'm getting an error on second line:

The method expect(T) in the type EasyMock is not applicable for the arguments (void)

How can I fix this issue?

link|improve this question

feedback

1 Answer

Use simple call like this:

testObject.voidMethod(); // don't use "expect" for voids
expectLastCall().times(3); // use this for expectations

And don't forget reply() after all you expectations and verify() after running tested code.

link|improve this answer
sorry I had a mistake but it doesn't change behavior.voidMethod is called from aMethod and it's a private method.Anyway I expect call of voidMethod from aMethod.If even voidMethod would public, whether testObject.voidMethod(); relates to my testing aMethod?? – Ademiban Dec 8 '11 at 7:46
feedback

Your Answer

 
or
required, but never shown

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