01: package net.xoetrope.xui.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.addTestSuite(net.xoetrope.testpilot.test.createScript.class);
24: // theSuite.addTestSuite(net.xoetrope.testpilot.test.Suite.class);
25: theSuite.addTestSuite(net.xoetrope.xui.test.TestStyles.class);
26: theSuite.addTestSuite(net.xoetrope.xui.test.TestXApplet.class);
27: theSuite
28: .addTestSuite(net.xoetrope.xui.test.TestXComponentFactory.class);
29: theSuite
30: .addTestSuite(net.xoetrope.xui.test.TestXHotspotImage.class);
31: theSuite
32: .addTestSuite(net.xoetrope.xui.test.TestXMetaContent.class);
33: theSuite.addTestSuite(net.xoetrope.xui.test.TestXPage.class);
34: theSuite
35: .addTestSuite(net.xoetrope.xui.test.TestXPageManager.class);
36: theSuite.addTestSuite(net.xoetrope.xui.test.TestXPanel.class);
37: theSuite
38: .addTestSuite(net.xoetrope.xui.test.TestXRadioButton.class);
39: theSuite
40: .addTestSuite(net.xoetrope.xui.test.TestXResourceManager.class);
41: theSuite.addTestSuite(net.xoetrope.xui.test.TestXTable.class);
42: return theSuite;
43: }
44:
45: /** Executes the test case */
46: public static void main(String[] argv) {
47: String[] testCaseList = { ProjectTestSuite.class.getName() };
48: junit.swingui.TestRunner.main(testCaseList);
49: }
50: }
|