01: package org.mockejb.test;
02:
03: import junit.framework.Test;
04: import junit.framework.TestSuite;
05:
06: /**
07: * MockEJB Cactus tests
08: *
09: * @author Alexander Ananiev
10: */
11: public class AllCactusTests {
12:
13: public static Test suite() {
14: TestSuite suite = new TestSuite("MockEJB Cactus tests");
15:
16: suite.addTestSuite(FundamentalsTest.class);
17: suite.addTestSuite(JdbcAndTransactionTest.class);
18: suite.addTestSuite(StatefulTest.class);
19:
20: return suite;
21: }
22: }
|