package ${PACKAGE_NAME}; import junit.framework.JUnit4TestAdapter; import org.junit.*; #parse("File Header.java") public class ${NAME} { public static junit.framework.Test suite() { return new JUnit4TestAdapter(${NAME}.class); } @BeforeClass public static void setUp() throws Exception { System.out.println("setup"); } @AfterClass public static void tearDown() throws Exception { System.out.println("teardown"); } @Before public void beforeMethod() throws Exception { System.out.println("before method"); } @After public void afterMethod() throws Exception { System.out.println("after method"); } @Test public void testFirst() throws Exception { System.out.println("first"); } }