1 package org.jacorb.test.orb.connection; 2 3 22 23 import junit.framework.*; 24 import org.jacorb.test.common.*; 25 26 public class AllTest extends JacORBTestSuite 27 { 28 public AllTest (String name) 29 { 30 super (name); 31 } 32 33 public static Test suite () 34 { 35 TestSuite suite = new AllTest ("All orb/connection"); 36 37 suite.addTest( GIOPConnectionTest.suite() ); 38 suite.addTest( BiDirTest.suite() ); 39 suite.addTest( ClientConnectionTimeoutTest.suite() ); 40 suite.addTest( ServerConnectionTimeoutTest.suite() ); 41 42 return suite; 43 } 44 } 45 | Popular Tags |