01: package test.junit;
02:
03: import junit.framework.Test;
04: import junit.framework.TestCase;
05: import junit.framework.TestSuite;
06:
07: public class JUnitEmptyTest extends TestCase {
08:
09: public JUnitEmptyTest(String name) {
10: super (name);
11: }
12:
13: public static Test suite() {
14: TestSuite s = new TestSuite(JUnitEmptyTest.class);
15: return s;
16: }
17: }
|