Reputation: 3744
I work for a large enterprise, and my team's unit test practices and coverage leave something to be desired. I picked up copies of xUnit Test Patterns: Refactoring Test Code and Working Effectively with Legacy Code, but I would really like to see some full example test suites for existing applications. Specifically, I'm looking for the following:
I've dug around on Github, but so far the vast majority of the Java apps I come across are Android apps or have no test suites.
Upvotes: 4
Views: 188
Reputation: 18170
Have a look at this https://github.com/testinfected/petstore/ - it's a Spring/Hibernate pet store web app using the ideas in the http://www.growing-object-oriented-software.com/ book.
Upvotes: 1