Update of 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-junit/src/test/java/org/xdoclet/testapp
In directory 
sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv17850/plugin-junit/src/test/java/org/xdoclet/testapp

Added Files:
        AllTests.java 
Log Message:
improvements in maven build


--- NEW FILE: AllTests.java ---
package some.pack;

import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import junit.textui.TestRunner;

public class AllTests extends TestCase {

    public static Test suite() {
        TestSuite suite = new TestSuite("SomeName");

        
suite.addTestSuite(org.xdoclet.plugin.junit.TestSuitePluginTestCase.class);

        return suite;
    }

    public void testDummy() {
    }

    public static void main(String[] args) {
        TestRunner.run(suite());
    }
}


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to