How to drastically improve code coverage?
- by Peter Kofler
I'm tasked with getting a legacy application under unit test. First some background about the application: It's a 600k LOC Java RCP code base with these major problems
massive code duplication
no encapsulation, most private data is accessible from outside, some of the business data also made singletons so it's not just changeable from outside but…