package ${PACKAGE_NAME}; #parse("File Header.java") import junit.framework.*; #if (${TESTED_CLASS_PACKAGE_NAME} != "" && ${TESTED_CLASS_NAME} != "") import ${TESTED_CLASS_PACKAGE_NAME}.${TESTED_CLASS_NAME}; #end /** * * @see ${TESTED_CLASS_NAME} */ public class ${NAME} extends TestCase { #if (${TESTED_CLASS_NAME} != "") ${TESTED_CLASS_NAME} ${TESTED_CLASS_VARIABLE_NAME}; #end /** * Sets up the fixture, for example, open a network connection. * This method is called before a test is executed. */ protected void setUp() throws Exception { super.setUp(); //todo please create a object for ${TESTED_CLASS_NAME} here } /** * Tears down the fixture, for example, close a network connection. * This method is called after a test is executed. */ protected void tearDown() throws Exception { super.tearDown(); } }