There is a brief introduction called the JUnit Cookbook by Kent Beck and Erich Gamma.
Here is a short recipe for writing and organizing your unit tests using JUnit.suite.addTestSuite( QTest.class );
adds the test methods of QTest.java to the suite of TestCase
objects
returned by the suite method.
Include 1 such line for each class in the package. (If I find a better way to do this,
I'll get back to you.)