testing_legacy_code
testing_legacy_code copied to clipboard
Exercises to unit test legacy code
Testing legacy code: Hard-wired dependencies
Code related to my Testing legacy code: Hard-wired dependencies blog post
What is it about?
Provides an example of existing code that needs to be unit tested. But there is one rule:
We can't change any existing code if not covered by tests. The only exception is if we need to change the code to add unit tests, but in this case, just automated refactorings (via IDE) are allowed.
Although this is a very small piece of code, it has a lot of the problems that we find in legacy code.
Details
If you want to give it a go, the starting point is TripService_Original.java. Try unit testing it following the rule above.
My solution was TripServiceTest.java and TripSerivce.java