I have methods like these:
public <T> method(String s, Class<T> t) {...}
That I need to check that null is passed to the second argument when using matchers for the other parameters, I have been doing this :
@SuppressWarnings("unchecked")
verify(client).method(eq("String"), any(Class.class));
But is there a better way (without suppress warnings) ? T represents the return type of some other method, which is sometimes void and in these cases null is passed in.
null(instead ofany(Class.class))? – Andy Oct 3 '12 at 11:39