1 package org.jacorb.test.notification.evaluate; 2 3 23 24 import junit.framework.Test; 25 import junit.framework.TestCase; 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.evaluate"); 43 44 _suite.addTest(DynamicEvaluatorTest.suite()); 45 46 return _suite; 47 } 48 } | Popular Tags |