1 21 22 package org.jacorb.test.notification.servant; 23 24 import junit.framework.Test; 25 import junit.framework.TestCase; 26 import junit.framework.TestSuite; 27 28 32 public class PackageTest extends TestCase 33 { 34 public static Test suite() throws Exception  35 { 36 TestSuite suite = new TestSuite(); 37 38 suite.addTest(ProxyPushSupplierImplTest.suite()); 39 suite.addTest(StructuredProxyPushSupplierImplTest.suite()); 40 suite.addTest(AbstractProxySupplierTest.suite()); 41 42 return suite; 43 } 44 } 45 | Popular Tags |