[jbpm-commits] JBoss JBPM SVN: r5933 - in jbpm4/trunk/modules/test-enterprise/test-enterprise-suite: src and 6 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Dec 8 22:19:05 EST 2009


Author: koen.aers at jboss.com
Date: 2009-12-08 22:19:04 -0500 (Tue, 08 Dec 2009)
New Revision: 5933

Added:
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/EjbTest.java
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/JmsTest.java
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/cactus.properties
   jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/jbpm-destinations-service.xml
Log:
initial upload of the jbpm-test-enterprise-suite module

Added: jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/EjbTest.java
===================================================================
--- jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/EjbTest.java	                        (rev 0)
+++ jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/EjbTest.java	2009-12-09 03:19:04 UTC (rev 5933)
@@ -0,0 +1,20 @@
+package org.jbpm.test;
+
+import org.apache.cactus.ServletTestSuite;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+
+public class EjbTest extends TestCase {
+	
+	public static Test suite() {
+		ServletTestSuite servletTestSuite = new ServletTestSuite();
+		servletTestSuite.addTestSuite(EjbTest.class);
+		return servletTestSuite;
+	}
+	
+	public void testEjbInvocation() {
+		throw new RuntimeException();
+	}
+
+}


Property changes on: jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/EjbTest.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/JmsTest.java
===================================================================
--- jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/JmsTest.java	                        (rev 0)
+++ jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/JmsTest.java	2009-12-09 03:19:04 UTC (rev 5933)
@@ -0,0 +1,16 @@
+package org.jbpm.test;
+
+import org.apache.cactus.ServletTestSuite;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+
+public class JmsTest extends TestCase {
+
+	public static Test suite() {
+		ServletTestSuite servletTestSuite = new ServletTestSuite();
+		servletTestSuite.addTestSuite(JmsTest.class);
+		return servletTestSuite;
+	}
+
+}


Property changes on: jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/java/org/jbpm/test/JmsTest.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/cactus.properties
===================================================================
--- jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/cactus.properties	                        (rev 0)
+++ jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/cactus.properties	2009-12-09 03:19:04 UTC (rev 5933)
@@ -0,0 +1 @@
+cactus.contextURL=http://localhost:8080/jbpm-test-enterprise-suite


Property changes on: jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/cactus.properties
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/jbpm-destinations-service.xml
===================================================================
--- jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/jbpm-destinations-service.xml	                        (rev 0)
+++ jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/jbpm-destinations-service.xml	2009-12-09 03:19:04 UTC (rev 5933)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<server>
+	<mbean code="org.jboss.jms.server.destination.QueueService"
+		name="jboss.messaging.destination:service=Queue,name=jbpm-test"
+		xmbean-dd="xmdesc/Queue-xmbean.xml">
+		<depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+		<depends>jboss.messaging:service=PostOffice</depends>
+	</mbean>
+</server>
\ No newline at end of file


Property changes on: jbpm4/trunk/modules/test-enterprise/test-enterprise-suite/src/test/resources/jbpm-destinations-service.xml
___________________________________________________________________
Name: svn:mime-type
   + text/plain



More information about the jbpm-commits mailing list