Home | History | Annotate | Download | only in junit
      1 package test.junit;
      2 
      3 import junit.framework.Test;
      4 import junit.framework.TestCase;
      5 import junit.framework.TestSuite;
      6 
      7 public class JUnitEmptyTest extends TestCase {
      8 
      9   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 }