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