1 package org.jacorb.test.orb.rmi; 2 3 22 23 import junit.framework.*; 24 25 public class AllTest extends TestCase 26 { 27 public AllTest (String name) 28 { 29 super (name); 30 } 31 32 public static Test suite () 33 { 34 TestSuite suite = new TestSuite ("RMI Tests"); 35 36 suite.addTest (org.jacorb.test.orb.rmi.RMITest.suite()); 37 38 return suite; 39 } 40 } 41 | Popular Tags |