1 21 22 package org.jacorb.test.notification.container; 23 24 import junit.framework.Test; 25 import junit.framework.TestSuite; 26 27 31 public class PackageTest extends TestSuite 32 { 33 public static Test suite() 34 { 35 TestSuite suite = new TestSuite("Tests in package org.jacorb.test.notification.container"); 36 37 suite.addTest(CORBAObjectComponentAdapterTest.suite()); 38 suite.addTest(CoreContainerFactoryTest.suite()); 39 40 return suite; 41 } 42 } 43 | Popular Tags |