Author: tom.baeyens(a)jboss.com
Date: 2009-08-04 17:29:31 -0400 (Tue, 04 Aug 2009)
New Revision: 5427
Added:
jbpm4/trunk/modules/test-cactus/src/test/java/org/jbpm/test/AllIntegrationTests.java
Log:
JBPM-2409 JBPM-2411 introducing the test-cactus module
Added:
jbpm4/trunk/modules/test-cactus/src/test/java/org/jbpm/test/AllIntegrationTests.java
===================================================================
--- jbpm4/trunk/modules/test-cactus/src/test/java/org/jbpm/test/AllIntegrationTests.java
(rev 0)
+++
jbpm4/trunk/modules/test-cactus/src/test/java/org/jbpm/test/AllIntegrationTests.java 2009-08-04
21:29:31 UTC (rev 5427)
@@ -0,0 +1,48 @@
+package org.jbpm.test;
+
+import junit.framework.Test;
+import org.apache.cactus.ServletTestSuite;
+
+public class AllIntegrationTests {
+
+ public static Test suite() {
+ Test suite = new ServletTestSuite();
+ suite.addTestSuite(org.jbpm.examples.async.activity.AsyncActivityTest);
+ suite.addTestSuite(org.jbpm.examples.async.fork.AsyncForkTest);
+
suite.addTestSuite(org.jbpm.examples.concurrency.graphbased.ConcurrencyGraphBasedTest);
+ suite.addTestSuite(org.jbpm.examples.custom.CustomTest);
+ suite.addTestSuite(org.jbpm.examples.decision.conditions.DecisionConditionsTest);
+ suite.addTestSuite(org.jbpm.examples.decision.expression.DecisionExpressionTest);
+ suite.addTestSuite(org.jbpm.examples.decision.handler.DecisionHandlerTest);
+ suite.addTestSuite(org.jbpm.examples.end.multiple.EndMultipleTest);
+ suite.addTestSuite(org.jbpm.examples.end.processinstance.EndProcessInstanceTest);
+ suite.addTestSuite(org.jbpm.examples.end.state.EndStateTest);
+ suite.addTestSuite(org.jbpm.examples.eventlistener.EventListenerTest);
+ suite.addTestSuite(org.jbpm.examples.hql.HqlTest);
+ suite.addTestSuite(org.jbpm.examples.java.JavaInstantiateTest);
+ suite.addTestSuite(org.jbpm.examples.mail.inline.InlineMailTest);
+ suite.addTestSuite(org.jbpm.examples.mail.template.TemplateMailTest);
+ suite.addTestSuite(org.jbpm.examples.script.expression.ScriptExpressionTest);
+ suite.addTestSuite(org.jbpm.examples.script.text.ScriptTextTest);
+ suite.addTestSuite(org.jbpm.examples.services.ServicesTest);
+ suite.addTestSuite(org.jbpm.examples.sql.SqlTest);
+ suite.addTestSuite(org.jbpm.examples.state.choice.StateChoiceTest);
+ suite.addTestSuite(org.jbpm.examples.state.sequence.StateSequenceTest);
+
suite.addTestSuite(org.jbpm.examples.subprocess.outcomeactivity.SubProcessOutcomeActivityTest);
+
suite.addTestSuite(org.jbpm.examples.subprocess.outcomevalue.SubProcessOutcomeValueTest);
+ suite.addTestSuite(org.jbpm.examples.subprocess.variables.SubProcessVariablesTest);
+ suite.addTestSuite(org.jbpm.examples.task.assignee.TaskAssigneeTest);
+
suite.addTestSuite(org.jbpm.examples.task.assignmenthandler.TaskAssignmentHandlerTest);
+ suite.addTestSuite(org.jbpm.examples.task.candidates.TaskCandidatesTest);
+ suite.addTestSuite(org.jbpm.examples.task.comments.TaskCommentsTest);
+ suite.addTestSuite(org.jbpm.examples.task.notification.TaskNotificationTest);
+ suite.addTestSuite(org.jbpm.examples.task.reminder.TaskReminderTest);
+ suite.addTestSuite(org.jbpm.examples.task.swimlane.TaskSwimlaneTest);
+ suite.addTestSuite(org.jbpm.examples.task.variables.TaskVariablesTest);
+ suite.addTestSuite(org.jbpm.examples.timer.businesstime.TimerBusinessTimeTest);
+ suite.addTestSuite(org.jbpm.examples.timer.event.TimerEventTest);
+ suite.addTestSuite(org.jbpm.examples.timer.repeat.TimerRepeatTest);
+ suite.addTestSuite(org.jbpm.examples.timer.transition.TimerTransitionTest);
+ return suite;
+ }
+}
Property changes on:
jbpm4/trunk/modules/test-cactus/src/test/java/org/jbpm/test/AllIntegrationTests.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Show replies by date