vote up 2 vote down star

Hi! So which is better. Do we start letting Tests design our code. Do we start introducing constructor injection for dependencies just to make code testable? or do we use the "override" protected method & sub class the class under test.

flag
So what about Constructor injection for dependency de-coupling. – Nick Berardi Oct 9 '08 at 9:46
Amen. I ask myself this whenever I devote time to writing automated tests for existing (or even new) code. It seems no design is good enough to satisfy both the app and the tests. Sure, decoupling is good, but testing introduces a new requirement calling for dramatic changes from the bottom up. – harpo Oct 9 '08 at 13:59
Both approaches are reasonable depending on the context... – Frank Schwieterman Jul 22 at 17:07

3 Answers

vote up 2 vote down

I generally think that testable code is good code. For code to be testable, you need better decoupling so each component can be tested in isolation with a test harness. However, there shouldn't be code in the implementation that is just used by the unit tests.

Also, keep in mind that what you need to test is the public API of an object, not it's protected/private methods. Finding bugs in private/protected method should be what logging/debuggers are for. After all, a bug in those will also propagate up to the public methods. So as long as the public methods fulfill tests, the protected methods will be covered too.

If you are using java, and have package scoped classes that implement public interfaces in the same package, I would put the unit tests in the same package in a separate folder to test those classes. You can also put unit tests in the same package as the tested class to test protected methods.

link|flag
vote up 0 vote down

I mostly agree with Staale, well-designed code should be testable.
I don't use constructor injection or derive classes for testing. I believe using 'service locators' is the right way to do dependency injection.

link|flag
vote up 0 vote down

If your tests are well designed, they will emulate real-world usage. Therefore a really good suite of unit tests that will cover every conceivable way an app could leverage your code will should result in a robust implementation. If your tests are flawed, then you are not gaining much.

link|flag

Your Answer

Get an OpenID
or

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