com.mockrunner.test.AllTestsWithoutConsistencyTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockrunner-jdk1.3-j2ee1.3 Show documentation
Show all versions of mockrunner-jdk1.3-j2ee1.3 Show documentation
Mockrunner is a lightweight framework for unit testing applications
in the J2EE environment. It supports servlets, filters, tag classes
and Struts actions. It includes a JDBC a JMS and a JCA test
framework and can be used to test EJB based applications.
The newest version!
package com.mockrunner.test;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.activemq.mockrunner.test.AllActiveMQMockrunnerTests;
import com.mockrunner.test.connector.AllConnectorTests;
import com.mockrunner.test.ejb.AllEJBTests;
import com.mockrunner.test.gen.AllGenTests;
import com.mockrunner.test.jdbc.AllJDBCTests;
import com.mockrunner.test.jms.AllJMSTests;
import com.mockrunner.test.util.AllUtilTests;
import com.mockrunner.test.web.AllWebTests;
public class AllTestsWithoutConsistencyTest
{
public static Test suite()
{
TestSuite suite = new TestSuite("Test for com.mockrunner.test");
//$JUnit-BEGIN$
suite.addTest(AllWebTests.suite());
suite.addTest(AllJDBCTests.suite());
suite.addTest(AllEJBTests.suite());
suite.addTest(AllJMSTests.suite());
suite.addTest(AllConnectorTests.suite());
suite.addTest(AllUtilTests.suite());
suite.addTest(AllActiveMQMockrunnerTests.suite());
suite.addTest(AllGenTests.suite());
suite.addTest(AllExampleTests.suite());
suite.addTest(new TestSuite(BaseTestCaseTest.class));
suite.addTest(new TestSuite(ExtendedBaseTestCaseTest.class));
suite.addTest(new TestSuite(NestedApplicationExceptionTest.class));
//$JUnit-END$
return suite;
}
}