Google Chrome OS Screenshots

Auto Generate JUnit Test Cases

If you are starting fresh with using JUnit and writing Unit Testcases, then this tool will be very handy.

We currently already use JUnit, however we didnt write testcases for the POJOs. Now the code had grown so much we now have lot of POJOs and our coverage looks very dull.

The advantage of this tool is it not only generates skeleton test cases, for POJOs with just setter and getters, it actually generates Testcases also.

JUnit Code generation tool: http://www.junitdoclet.org/

Eclipse plugin using this doclet: http://sourceforge.net/projects/e-junitdoclet/

Example:
JUnitDoclet.1.0.2>junitdoclet.bat -d out -sourcepath C:\mymodule\src -package com.my.package

Very cool tool and I am gonna use this a lot. Thanks to JUnitDoclet Team.