1 package org.xmlBlaster.test.jdbc;
 2 
 3 import junit.framework.*;
 4 
 5 /**
 6  * TestSuite that runs all the sample tests. 
 7  * <pre>
 8  * java -Djava.compiler= org.xmlBlaster.test.jdbc.AllTests
 9  * java -Djava.compiler= junit.swingui.TestRunner -noloading org.xmlBlaster.test.jdbc.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 JDBC plugin tests");
18       suite.addTest(new TestSuite(org.xmlBlaster.test.jdbc.TestJdbcAccess.class));
19       return suite;
20    }
21    // To force compilation:
22    public void dummy() {
23       new TestJdbcAccess("TestJdbcAccess"); 
24    }
25 }


syntax highlighted by Code2HTML, v. 0.9.1