I've been writing a lot of unit tests recently. There's a scenario to which I cannot find a clean solution...
Let's say you have a beast of a method:
public void bigMethod() {
// a lot of code goes in here
}
To make your life easier and your code cleaner you'd usually decompose such a beast into smaller inner methods:
public void bigMethod() {
a();
b();
c();
// etc.
}
You can test all of the inner methods (a(), b(), c() etc.) independently. The problem is the bigMethod() which should also be tested but the only thing it's doing is chaining calls of some other methods and those have been thoroughly tested already!
How do you approach such a scenario? You cannot just leave bigMethod() untested because you need to be sure that a(), b() and c() are called in there IN PROPER ORDER. But writing a test for bigMethod() will lead to a lot of DUPLICATION IN TESTS. And reducing this duplication there every time is a lot of hassle since you'll be doing that OFTEN.
One idea that comes to my mind is:
public void bigMethod() {
helperA.a();
helperB.b();
helperC.c();
// etc.
}
In this scenario you test every helper class and then make sure bigMethod() calls them inOrder. Nice and clean but introduces a lot of very small classes into the project.
Help test ninjas!

Nice and clean but introduces a lot of very small classes into the project.Small, clean, simple, easily testable, mockable, reusable, and with one responsibility. Doesn't sound so bad to me... – digitaljoel Oct 15 '12 at 17:21