$PKGLINE /** * The test class $CLASSNAME. * * @author (your name) * @version (a version number or a date) */ public class $CLASSNAME extends junit.framework.TestCase { /** * Default constructor for test class $CLASSNAME */ public $CLASSNAME() { } /** * Sets up the test fixture. * * Called before every test case method. */ protected void setUp() { } /** * Tears down the test fixture. * * Called after every test case method. */ protected void tearDown() { } }