1 package org.jacorb.test.notification.bugs; 2 3 23 24 import junit.framework.TestCase; 25 import junit.framework.Test; 26 import junit.framework.TestSuite; 27 28 34 35 public class PackageTest extends TestCase 36 { 37 public PackageTest(String name) 38 { 39 super(name); 40 } 41 42 public static Test suite() throws Exception 43 { 44 TestSuite _suite = new TestSuite("Tests in Package org.jacorb.test.notification.bugs"); 45 46 _suite.addTest(MultipleDeliveryBugTest.suite()); 47 _suite.addTest(DeadlockBugTest.suite()); 48 49 return _suite; 50 } 51 52 public static void main(String [] args) throws Exception 53 { 54 junit.textui.TestRunner.run(suite()); 55 } 56 } 57 | Popular Tags |