01: /*
02: * SimpleTest.java
03: * JUnit based test
04: *
05: * Created on August 13, 2004, 1:07 PM
06: */
07:
08: package abc.xyz;
09:
10: import junit.framework.*;
11:
12: /**
13: *
14: * @author mp
15: */
16: public class SimpleTest extends TestCase {
17:
18: public SimpleTest(java.lang.String testName) {
19: super (testName);
20: }
21:
22: public static Test suite() {
23: TestSuite suite = new TestSuite(SimpleTest.class);
24: return suite;
25: }
26:
27: // TODO add test methods here, they have to start with 'test' name.
28: // for example:
29: // public void testHello() {}
30:
31: }
|