braveterry
braveterry

Reputation: 3744

Where can I find open source web application implementations online that contain (mostly) complete unit test suites in Java?

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

Answers (1)

blank
blank

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

Related Questions