TestDox

TestDox creates simple documentation from the method names in JUnit test cases.

For Example, a test class like:

public class FooTest extends TestCase {
    public void testIsASingleton() {}
    public void testAReallyLongNameIsAGoodThing() {}
}
would generate the following :
Foo
- is a singleton
- a really long name is a good thing

Quick Start

The best way to try out testdox is to run it using webstart

  • Download testdox-0.1.jar
  • Run java -jar testdox-0.1.jar [test-directory ]

If you leave off test-directory then testdox will pop up a (minimal) gui. Enter the name of a directory or browse to a directory containing test classes and click on the Go button.

At the moment, testdox just dumps its output to System.out.