Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Have you tried null (instead of any(Class.class))? – Andy Oct 3 '12 at 11:39
The problem is when your using matchers for the other parameters - you have to use matchers for all – Bedwyr Humphreys Oct 3 '12 at 11:49

2 Answers

up vote 5 down vote accepted

This works for me:

verify(client).method(eq("String"), eq((Class<?>) null));
share|improve this answer
1  
Thanks! I never think about casting null ... bye bye @SuppressWarnings – Bedwyr Humphreys Oct 3 '12 at 12:38

Mockito has an isNull matcher, where you can pass in the name of the class. So if you need to use it with other matchers, the correct thing to do is

verify(client).method(eq("String"),isNull(Class<?>.class));
share|improve this answer
Yes, this is the correct answer. – Duncan Jones Apr 26 at 9:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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