User: vharcq
Date: 02/03/11 00:03:25
Added: core/test/src/xdoclet/retest/test/ejb
TransactionBeanTest.java
Log:
Add unit tests for container-transaction
Remark: I break some stuffs here, so I will patch then commit the reference DD
Revision Changes Path
1.1
xdoclet/core/test/src/xdoclet/retest/test/ejb/TransactionBeanTest.java
Index: TransactionBeanTest.java
===================================================================
package xdoclet.retest.test.ejb;
import xdoclet.retest.test.DDEjbJarTestCase;
import junit.framework.TestCase;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;
/**
* @author Vincent Harcq ([EMAIL PROTECTED])
* @created Mar 10, 2002
* @version $Revision: 1.1 $
*/
public class TransactionBeanTest
extends TestCase
{
public TransactionBeanTest(String name)
{
super(name);
}
public static Test suite()
{
TestSuite suite = new TestSuite();
DDEjbJarTestCase jbtc = new DDEjbJarTestCase("DD","Transaction");
suite.addTest(jbtc.getSuite());
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