User: vharcq
Date: 02/03/02 02:50:28
Added: core/test/src/xdoclet/retest/test/ejb AllRegressionTest.java
Removed: core/test/src/xdoclet/retest/test/ejb SimpleSFTest.java
SimpleSLTest.java
Log:
Improvement of regression unit test
Revision Changes Path
1.1
xdoclet/core/test/src/xdoclet/retest/test/ejb/AllRegressionTest.java
Index: AllRegressionTest.java
===================================================================
/*
* $Id: AllRegressionTest.java,v 1.1 2002/03/02 10:50:28 vharcq Exp $
*/
package xdoclet.retest.test.ejb;
import xdoclet.retest.util.ClassComparator;
import xdoclet.retest.util.ComparisonResultSet;
import xdoclet.retest.test.StatelessSessionBeanRegressionTestCase;
import xdoclet.retest.test.StatefulSessionBeanRegressionTestCase;
import junit.framework.TestCase;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
public class AllRegressionTest
extends TestCase
{
public AllRegressionTest(String name){
super(name);
}
public static Test suite(){
StatelessSessionBeanRegressionTestCase slt = new
StatelessSessionBeanRegressionTestCase("Stateless Session Bean");
StatefulSessionBeanRegressionTestCase sft = new
StatefulSessionBeanRegressionTestCase("Stateful Session Bean");
TestSuite suite = slt.suite("SimpleSL");
// Add more tests like this:
//suite.addTest(slt.suite("SimpleSL"));
suite.addTest(sft.suite("SimpleSF"));
return suite;
}
public static void main(String[] args){
TestRunner.run(suite());
}
}
_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel