• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
JUnitEmptyTest(String name)9   public JUnitEmptyTest(String name) {
10     super(name);
11   }
12 
suite()13   public static Test suite() {
14     TestSuite s = new TestSuite(JUnitEmptyTest.class);
15     return s;
16   }
17 }