1 25 26 package test.first; 27 28 import junit.framework.TestCase; 29 30 35 public class Test extends TestCase 36 { 37 38 public Test(String name) 39 { 40 super(name); 41 } 42 43 46 public void testMethod() 47 { 48 A a = new A(); 49 a.call(); 50 51 B b = new B(); 52 b.call(); 53 54 test.second.A a2 = new test.second.A(); 55 a2.call(); 56 57 test.second.B b2 = new test.second.B(); 58 b2.call(); 59 } 60 61 } 62 | Popular Tags |