1 package org.jacorb.test.notification.engine; 2 3 23 24 import junit.framework.TestCase; 25 import junit.framework.Test; 26 import junit.framework.TestSuite; 27 28 32 33 public class PackageTest extends TestCase 34 { 35 public PackageTest(String name) 36 { 37 super(name); 38 } 39 40 public static Test suite() throws Exception 41 { 42 TestSuite _suite = new TestSuite("Tests in Package org.jacorb.test.notification.engine"); 43 44 _suite.addTest(PushOperationTest.suite()); 45 _suite.addTest(WaitRetryStrategyTest.suite()); 46 _suite.addTest(TaskProcessorRetryStrategyTest.suite()); 47 _suite.addTest(AlwaysDisposeRetryStrategyTest.suite()); 48 _suite.addTest(FilterProxyConsumerTaskTest.suite()); 49 _suite.addTest(FilterProxySupplierTaskTest.suite()); 50 _suite.addTest(FilterConsumerAdminTaskTest.suite()); 51 _suite.addTest(FilterSupplierAdminTaskTest.suite()); 52 53 return _suite; 54 } 55 } | Popular Tags |