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


syntax highlighted by Code2HTML, v. 0.9.1