01:/*
02:@license.text@
03: */
04:package com.pavelvlasov.jsel.junit;
05:
06:import junit.framework.TestCase;
07:
08:/**
09: * Generated by Pamda
10: * @author Pavel Vlasov
11: * @version $Revision$
12: */
13:public class ${javaHelper.formatClassName("${element.name}")}TestCase extends TestCase {
14:
15: public static void main(String[] args) {
16: junit.textui.TestRunner.run(${javaHelper.formatClassName("${element.name}")}TestCase.class);
17: }
18:
19: /*
20: * @see TestCase.setUp()
21: */
22: protected void setUp() throws Exception {
23: super .setUp();
24: }
25:
26: /*
27: * @see TestCase.tearDown()
28: */
29: protected void tearDown() throws Exception {
30: super .tearDown();
31: }
32:
33: /**
34: * Constructor for CompilationUnitTestCase.
35: * @param arg0
36: */
37: public ${javaHelper.formatClassName("${element.name}")}TestCase(String arg0) {
38: super (arg0);
39: }
40:
41: public void testDump() {
42: }
43:
44: public void testCompilationUnitImpl() {
45: }
46:
47: /*
48: * Class to test for void accept(com.pavelvlasov.jsel.Visitor)
49: */
50: public void testAcceptVisitor() {
51: }
52:
53: // TODO Add ${javaHelper.formatClassName("${element.name}")} specific methods
54:}
|