Package xdoclet.retest.test.ejb

Source Code of xdoclet.retest.test.ejb.TransactionBeanTest

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 (vincent.harcq@hubmethods.com)
* @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());
    }

}
TOP

Related Classes of xdoclet.retest.test.ejb.TransactionBeanTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.