Post Made Community Wiki by Community
show/hide this revision's text 2 added 523 characters in body

I completelly AGREE WITH YOU!

I stated this in my ansewer: http://stackoverflow.com/questions/90657/mocking-method-results#90687

And I had to edit my answer twice to be clearer, because almost all answers suggested creating an interface to an UTILITY class. This kind of answer was even accepted. You should create an interface for testing purposes if it makes sense - which it does NOT in the context of the question.

Creating an interface is not even the biggest problem. I think the worst is obligate a client class to inject the interface implementation when calling a simple operation. This will increase the complexity all code using that class. This is very bad. It's a hack! A BAD hack! Why is it bad?

  • It's an Utility class. It's not likely to change implementation. So why even bother adding other layer of abstraction?!
  • Was suggested over and over to inject the Utility class implementation in classes that uses it. Now code that looks like this: myClass.loadData() will look like this: myClass.loadData(new HelperImplementation()). NO!!
  • +1 to all the points stated by Mike
  • There are other - more elegant - ways.
  • Must be other reasons why it's bad. :)
show/hide this revision's text 1

I completelly AGREE WITH YOU!

I stated this in my ansewer: http://stackoverflow.com/questions/90657/mocking-method-results#90687

And I had to edit my answer twice to be clearer, because almost all answers suggested creating an interface to an UTILITY class. This kind of answer was even accepted. You should create an interface for testing purposes if it makes sense - which it does NOT in the context of the question.

Creating an interface is not even the biggest problem. I think the worst is obligate a client class to inject the interface implementation when calling a simple operation. This will increase the complexity all code using that class. This is very bad. It's a hack! A BAD hack!