This one is probably a PowerMock/EasyMock 101 question which I cannot figure out why. I have a class C with methods

public static boolean testInner(String s) {
    return false;
}

public static boolean testOuter() {
    String x = "someValue";
    return testInner(x);
}

In my test of testOuter() method I want to ensure testInner is called with appropriate parameter. To do so, I am doing something like this: [@RunWith(PowerMockRunner.class) @PrepareForTest(EmailUtil.class) declared at Class level]

EasyMock.expect(C.testInner("blabla")).andReturn(true);
PowerMock.replayAll();
boolean status = C.testOuter();
PowerMock.verifyAll();  
assertTrue(status);

But I am getting error as:

java.lang.AssertionError: 
Unexpected method call testOuter():
testInner("blabla"): expected: 1, actual: 0
    at org.easymock.internal.MockInvocationHandler.invoke(MockInvocationHandler.java:45)
    at org.powermock.api.easymock.internal.invocationcontrol.EasyMockMethodInvocationControl.invoke(EasyMockMethodInvocationControl.java:95)
    at org.powermock.core.MockGateway.doMethodCall(MockGateway.java:105)
    at org.powermock.core.MockGateway.methodCall(MockGateway.java:60)
    at C.testOuter(C.java)

I replaced the actual parameter with EasyMock.IsA(String.class) but still no luck. I am pretty sure I am doing something fundamentally silly here. Any help?

link|improve this question

79% accept rate
feedback

1 Answer

You're only telling EasyMock to expect a call to testInner(), not testOuter().

 Unexpected method call testOuter():

Tried this:

EasyMock.expect(C.testInner("blabla")).andReturn(true);
EasyMock.expect(C.testOuter());
PowerMock.replayAll();

?

link|improve this answer
Thanks Peter. I added the testOuter() expect but now I am getting: java.lang.IllegalStateException: missing behavior definition for the preceding method call testOuter() at org.easymock.internal.MocksControl.replay(MocksControl.java:174) – phewataal Jan 26 at 21:36
Hmm, apparently too long since I used EasyMock :) Perhaps it was like this....EasyMock.expect(C.testOuter()).andReturn(true); – Peter Liljenberg Jan 26 at 22:03
feedback

Your Answer

 
or
required, but never shown

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