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

My SUT may call a method on my mock with any object as paramter, including null.

So, does EasyMock.anyObject() match a null parameter? or can I use something else instead of anyObject() which will also match null ?

share|improve this question

1 Answer

up vote 3 down vote accepted

Since EasyMock also offers matchers for notNull() and null(), I assume the answer is yes - otherwise anyObject() and notNull() would be redundant (if anyObject() did not match null).

A simple test confirms this.

share|improve this answer

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.