01: package test;
02:
03: import junit.framework.Test;
04: import junit.framework.TestCase;
05: import junit.framework.TestSuite;
06:
07: /**
08: * This test suite has been automatically generated
09: * to execute all JUnitTest tests found in the project.
10: * To update the list of tests re-run the UnitTest Batch TestRunner again.
11: */
12:
13: public class ProjectTestSuite extends TestCase {
14:
15: public ProjectTestSuite(String _name) {
16: super (_name);
17: }
18:
19: public static Test suite() {
20: TestSuite theSuite = new TestSuite();
21: theSuite
22: .addTestSuite(net.xoetrope.data.test.TestXDataSource.class);
23: theSuite
24: .addTestSuite(net.xoetrope.xui.test.ProjectTestSuite.class);
25: theSuite.addTestSuite(net.xoetrope.xui.test.TestStyles.class);
26: theSuite
27: .addTestSuite(net.xoetrope.xui.test.TestTableSample.class);
28: theSuite.addTestSuite(net.xoetrope.xui.test.TestXApplet.class);
29: theSuite
30: .addTestSuite(net.xoetrope.xui.test.TestXComponentFactory.class);
31: theSuite
32: .addTestSuite(net.xoetrope.xui.test.TestXHotspotImage.class);
33: theSuite
34: .addTestSuite(net.xoetrope.xui.test.TestXMetaContent.class);
35: theSuite.addTestSuite(net.xoetrope.xui.test.TestXPage.class);
36: theSuite
37: .addTestSuite(net.xoetrope.xui.test.TestXPageManager.class);
38: theSuite.addTestSuite(net.xoetrope.xui.test.TestXPanel.class);
39: theSuite
40: .addTestSuite(net.xoetrope.xui.test.TestXRadioButton.class);
41: theSuite
42: .addTestSuite(net.xoetrope.xui.test.TestXResourceManager.class);
43: theSuite.addTestSuite(net.xoetrope.xui.test.TestXTable.class);
44: return theSuite;
45: }
46:
47: /** Executes the test case */
48: public static void main(String[] argv) {
49: String[] testCaseList = { ProjectTestSuite.class.getName() };
50: junit.swingui.TestRunner.main(testCaseList);
51: }
52: }
|