01: package com.xoetrope.sql.test;
02:
03: import junit.framework.Test;
04: import junit.framework.TestCase;
05: import junit.framework.TestSuite;
06: import com.xoetrope.service.test.XServiceTest;
07:
08: /**
09: * This test suite has been automatically generated
10: * to execute all JUnitTest tests found in the project.
11: * To update the list of tests re-run the UnitTest Batch TestRunner again.
12: * <p>Copyright (c) Xoetrope Ltd. 2001-2004</p>
13: * $Revision: 1.1 $
14: */
15: public class ProjectTestSuite extends TestCase {
16:
17: public ProjectTestSuite(String _name) {
18: super (_name);
19: }
20:
21: public static Test suite() {
22: TestSuite theSuite = new TestSuite();
23: theSuite.addTestSuite(XTableTest.class);
24: theSuite.addTestSuite(XServiceTest.class);
25: // theSuite.addTestSuite(net.xoetrope.sql.test.XGridTest.class);
26: // theSuite.addTestSuite(net.xoetrope.xlib.data.test.TestXLibDataSource.class);
27: return theSuite;
28: }
29:
30: /** Executes the test case */
31: public static void main(String[] argv) {
32: String[] testCaseList = { ProjectTestSuite.class.getName() };
33: junit.swingui.TestRunner.main(testCaseList);
34: }
35: }
|