When I’m testing this static method
public class SomeClass {
public static long someMethod(Map map, String string, Long l, Log log) {
...
}
}
with
import org.apache.commons.logging.Log;
@RunWith(PowerMockRunner.class)
//@PrepareForTest(SomeClass.class)
public class Tests {
@Test
public void test() {
...
PowerMockito.mockStatic(SomeClass.class);
Mockito.when(SomeClass.someMethod(anyMap(), anyString(), anyLong(), isA(Log.class))).thenReturn(1L);
...
}
}
I got InvalidUseOfMatchersException. My questions are:
- Why I got this exception when all the arguments are using matchers? How to solve it? I have debugged it, found the
isA(Log.class)returns null. - When I add the
@PrepareForTestannotation to the test class and run the test, the junit makes no response. Why?
EDIT
I tried not to use argument matchers, and got
org.mockito.exceptions.misusing.MissingMethodInvocationException:
when() requires an argument which has to be ‘a method call on a mock’.
For example:
when(mock.getArticles()).thenReturn(articles);Also, this error might show up because:
you stub either of: final/private/equals()/hashCode() methods.
Those methods cannot be stubbed/verified.inside when() you don’t call method on mock but on some other object.
at …
So it seems due to the someMethod itself. There are synchronized block in the method. I’m wondering if Powermockito can mock that kind of method or not.
Try replacing the isA() to another any() call like this
[EDIT]
Check your stacktrace when you get the exception. Are you seeing any
NoClassDefFoundErrorreported? I noticed when I hadn’t included thejavassist.jarin my project I got a similar error to you.I use PowerMockito and these are the jars I added to a brand new project to run the code that @Tom posted
Always a good idea to check that you’re using compatible JAR versions, and also check if there are any other conflicting JARs in your projects classpath.