I have the following situation... I want to throw an exception whenever a particular method is called. I don't care what is passed in to this method, I just want an exception to be called. The catch is that this method takes custom classes as parameters.
The only way I have found to do this is with the following:
// Matches any Foo
TypeSafeMatcher<Foo> fooMatcher = new TypeSafeMatcher<Foo>() {
@Override
public Boolean matchesSafely(Foo foo) {
return true;
}
// more overrides
}
doThrow(new RuntimeException("dummy exception")).when(mockObj).someMethod(fooMatcher);
I tried doing the following, but I'm getting a message similar to "can't convert Object to Foo"... which makes sense:
doThrow(new RuntimeException("dummy exception")).when(mockObj).someMethod(anyObject());
I'm wondering if there is an easier way to do this without having to create a custom matcher for each custom class?
Thanks