Unit testing legacy code
What is legacy code?
Some define legacy code as code without proper unit tests.
Consider these:
Some define legacy code as code without proper unit tests.
Consider these:
- Did you just write some legacy code yesterday?
- What happens when you are tasked to take over the maintenance of someone else's code; someone's legacy code?
- What happens when you need to modify someone's legacy code?
- identify the area of change
- build safety net over the area before touching/ changing it
- refactor the code to ease adding new code
- write unit test for issue
- write code for fix/ enhancements
Comments