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?