TestDox release 0.1
Tuesday, June 17th, 2003TestDox creates simple documentation from the method names in JUnit test cases. You can load it using webstart from here
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
It is a really good way of seeing the tests in overview — and of course in Agile programming, the tests are the specification.
I’ve found it really useful for seeing where your tests are weak, or poorly thought out. Its much more readable than JavaDocs and normal camel case method names.







