01: package net.xoetrope.xui.test;
02:
03: import junit.framework.TestCase;
04:
05: /** JUnitTest case for class: net.xoetrope.xui.XComponentFactory */
06: public class TestXComponentFactory extends TestCase {
07:
08: public TestXComponentFactory(String _name) {
09: super (_name);
10: }
11:
12: public void testComponentCreation() {
13:
14: }
15:
16: /** Executes the test case */
17: public static void main(String[] argv) {
18: String[] testCaseList = { TestXComponentFactory.class.getName() };
19: junit.swingui.TestRunner.main(testCaseList);
20: }
21: }
|