1 /*------------------------------------------------------------------------------
 2 Name:      AllTests.java
 3 Project:   xmlBlaster.org
 4 Copyright: xmlBlaster.org, see xmlBlaster-LICENSE file
 5 Comment:   Start all tests
 6 ------------------------------------------------------------------------------*/
 7 package org.xmlBlaster.test.admin;
 8 
 9 import junit.framework.Test;
10 import junit.framework.TestSuite;
11 
12 /**
13  * This test client starts all known tests in directory xmlBlaster/testsuite/src/java/org/xmlBlaster/admin
14  * these are remote tests between clients and a running xmlBlaster. 
15  * <p />
16  * Invoke examples:<br />
17  * <pre>
18  *    java junit.textui.TestRunner -noloading org.xmlBlaster.test.client.AllTests
19  *    java junit.swingui.TestRunner -noloading org.xmlBlaster.test.client.AllTests
20  * </pre>
21  */
22 public class AllTests
23 {
24    public static Test suite() {
25       TestSuite suite= new TestSuite("All xmlBlaster admin tests");
26       suite.addTest(new TestSuite(TestAdminGet.class));
27      return suite;
28    }
29 }


syntax highlighted by Code2HTML, v. 0.9.1