[jbpm-commits] JBoss JBPM SVN: r1668 - in jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm: pvm/client and 1 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Jul 17 10:40:21 EDT 2008


Author: tom.baeyens at jboss.com
Date: 2008-07-17 10:40:21 -0400 (Thu, 17 Jul 2008)
New Revision: 1668

Added:
   jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/AllTests.java
   jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/pvm/client/PvmClientTests.java
   jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/wire/WireTests.java
Log:
added test suites again

Added: jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/AllTests.java
===================================================================
--- jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/AllTests.java	                        (rev 0)
+++ jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/AllTests.java	2008-07-17 14:40:21 UTC (rev 1668)
@@ -0,0 +1,45 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jbpm;
+
+import org.jbpm.pvm.client.PvmClientTests;
+import org.jbpm.wire.WireTests;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+
+/**
+ * @author Tom Baeyens
+ */
+public class AllTests {
+
+  public static Test suite() {
+    TestSuite suite = new TestSuite("Test for org.jbpm");
+    //$JUnit-BEGIN$
+    suite.addTest(PvmClientTests.suite());
+    suite.addTest(WireTests.suite());
+    //$JUnit-END$
+    return suite;
+  }
+
+}

Added: jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/pvm/client/PvmClientTests.java
===================================================================
--- jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/pvm/client/PvmClientTests.java	                        (rev 0)
+++ jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/pvm/client/PvmClientTests.java	2008-07-17 14:40:21 UTC (rev 1668)
@@ -0,0 +1,57 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jbpm.pvm.client;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+
+/**
+ * @author Tom Baeyens
+ */
+public class PvmClientTests {
+
+  public static Test suite() {
+    TestSuite suite = new TestSuite("Test for org.jbpm.pvm.client");
+    //$JUnit-BEGIN$
+    suite.addTestSuite(BasicExecutionFlowTest.class);
+    suite.addTestSuite(TransitionAsWaitStateTest.class);
+    suite.addTestSuite(TransitionBasedConcurrencyTest.class);
+    suite.addTestSuite(ScopeStateTest.class);
+    suite.addTestSuite(SubProcessTest.class);
+    suite.addTestSuite(ExecutionStateTest.class);
+    suite.addTestSuite(ExceptionHandlerTest.class);
+    suite.addTestSuite(FunctionalActivityTest.class);
+    suite.addTestSuite(ScopeVariableDeclarationTest.class);
+    suite.addTestSuite(LoopingTest.class);
+    suite.addTestSuite(TransitionEventsTest.class);
+    suite.addTestSuite(ExternalDecisionTest.class);
+    suite.addTestSuite(VariableTest.class);
+    suite.addTestSuite(ScopeVariableTest.class);
+    suite.addTestSuite(EventTest.class);
+    suite.addTestSuite(AutomaticDecisionTest.class);
+    suite.addTestSuite(EventPropagationTest.class);
+    //$JUnit-END$
+    return suite;
+  }
+
+}

Added: jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/wire/WireTests.java
===================================================================
--- jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/wire/WireTests.java	                        (rev 0)
+++ jbpm4/pvm/trunk/modules/core/src/test/java/org/jbpm/wire/WireTests.java	2008-07-17 14:40:21 UTC (rev 1668)
@@ -0,0 +1,61 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jbpm.wire;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+
+/**
+ * @author Tom Baeyens
+ */
+public class WireTests {
+
+  public static Test suite() {
+    TestSuite suite = new TestSuite("Test for org.jbpm.wire");
+    //$JUnit-BEGIN$
+    suite.addTestSuite(ContextBlockSubscriptionTest.class);
+    suite.addTestSuite(EagerInitTest.class);
+    suite.addTestSuite(ContextTest.class);
+    suite.addTestSuite(DependencyTest.class);
+    suite.addTestSuite(BasicTypeWireTest.class);
+    suite.addTestSuite(HibernateSessionFactoryWireTest.class);
+    suite.addTestSuite(SetWireTest.class);
+    suite.addTestSuite(ObjectWireTest.class);
+    suite.addTestSuite(TypeLookupTest.class);
+    suite.addTestSuite(MethodSubscriptionTest.class);
+    suite.addTestSuite(RefWireTest.class);
+    suite.addTestSuite(AutoWireTest.class);
+    suite.addTestSuite(ClassWireTest.class);
+    suite.addTestSuite(EnvWireTest.class);
+    suite.addTestSuite(ConcurrentWiringTest.class);
+    suite.addTestSuite(PropertiesWireTest.class);
+    suite.addTestSuite(MapWireTest.class);
+    suite.addTestSuite(ObjectSubscriptionTest.class);
+    suite.addTestSuite(WireEventsSubscriptionTest.class);
+    suite.addTestSuite(ListWireTest.class);
+    suite.addTestSuite(DelayedInitTest.class);
+    //$JUnit-END$
+    return suite;
+  }
+
+}




More information about the jbpm-commits mailing list