1 package org.xmlBlaster.test.jms;
 2 
 3 import junit.framework.*;
 4 
 5 /**
 6  * TestSuite that runs all the sample tests. 
 7  * <pre>
 8  * java org.xmlBlaster.test.jms.AllTests
 9  * java -Djava.compiler= org.xmlBlaster.test.jms.AllTests
10  * java -Djava.compiler= junit.swingui.TestRunner -noloading org.xmlBlaster.test.jms.AllTests
11  * </pre>
12  */
13 public class AllTests {
14    public static void main (String[] args) {
15       junit.textui.TestRunner.run (suite());
16    }
17    public static Test suite ( ) {
18       TestSuite suite= new TestSuite("All xmlBlaster class tests");
19       suite.addTest(new TestSuite(org.xmlBlaster.test.jms.TestJmsAdmin.class));
20       suite.addTest(new TestSuite(org.xmlBlaster.test.jms.TestJmsSubscribe.class));
21       suite.addTest(new TestSuite(org.xmlBlaster.test.jms.TestMessages.class));
22       return suite;
23    }
24 }


syntax highlighted by Code2HTML, v. 0.9.1