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

EasyMock allows you to create your own matchers so that you can specify what a mock should return for certain inputs. To do this, you create a custom implementation of their IArgumentMatcher interface.

This interface has two methods:

boolean matches(Object argument);
void appendTo(StringBuffer buffer) 

The appendTo() method is used for printing a human-readable message if a match fails. Why does it ask you to append the message to a StringBuffer and not to simply return a String? Why not have the following method on the interface instead?

String message();
share|improve this question
Well, this question can probably only be answered by the interface designer. My guess ... maybe for better performance. – Marcelo Jun 6 '11 at 16:24

1 Answer

StringBuffer here is actually a good choice. If you are using multiple matchers in a given situation, the use of StringBuffer allows all of the messages to be consolidated and retrieved a single time.

If you used the void message(); approach, you would have to call that for each matcher that you were concerned about (which is obviously sub-optimal).

share|improve this answer
Sorry, I meant to write that message() would have a return type of String. – ctford Jun 6 '11 at 19:15
When you talk about "using multiple matchers in a given situation", do you mean when you are mocking a method invocation that takes multiple arguments, each with their own matcher? – ctford Jun 9 '11 at 10:59

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.