1 package junitx.example.packageA.packageB; 2 3 import junit.framework.Test; 4 import junit.framework.TestCase; 5 import junit.framework.TestSuite; 6 7 11 public class SampleBJarTest 12 extends TestCase { 13 14 public SampleBJarTest(String name) { 15 super(name); 16 } 17 18 public static Test suite() { 19 TestSuite suite = new TestSuite(); 20 21 suite.addTest(new SampleBJarTest("testDummy1")); 22 suite.addTest(new SampleBJarTest("testDummy2")); 23 24 return suite; 25 } 26 27 public void testDummy1() { 28 } 29 30 public void testDummy2() { 31 } 32 33 public void testDummy3() { 34 } 35 36 } 37 | Popular Tags |