/* * __NAME__.java * * Created on __DATE__, __TIME__ */ package Templates.Classes; import junit.framework.*; /** * * @author __USER__ * @version */ public class JUnitTestableClass extends Object { /** * Creates new __NAME__ */ public JUnitTestableClass() { } /** * The inner class that extends TestCase and is handed to the testrunners. */ public static class TEST extends TestCase { /** * This constructor has to be there so the compiler won't bark. * @param name the name of the test case when used inside a test suite */ public TEST(String name) { super(name); } /** * The fixture set up called before every test method. */ public void setUp() { } /** * The fixture clean up called after every test method. */ public void tearDown() { } public static Test suite() { return new TestSuite(TEST.class); } } }