Author: objectiser
Date: 2010-10-07 05:01:26 -0400 (Thu, 07 Oct 2010)
New Revision: 1029
Added:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/esb/RiftSaw144TestCase.java
Removed:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw144TestCase.java
Log:
Move unit test to ESB package.
Copied:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/esb/RiftSaw144TestCase.java
(from rev 1012,
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw144TestCase.java)
===================================================================
---
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/esb/RiftSaw144TestCase.java
(rev 0)
+++
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/esb/RiftSaw144TestCase.java 2010-10-07
09:01:26 UTC (rev 1029)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file 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.jboss.soa.bpel.tests.esb;
+
+import org.jboss.soa.bpel.tests.RiftSawTest;
+import org.jboss.soa.bpel.tests.RiftSawTestSetup;
+
+import junit.framework.Test;
+
+/**
+ * Test case for running the Quickstart_bpel_hello_world sample.
+ */
+public class RiftSaw144TestCase extends RiftSawTest {
+
+ private static final String TEST_NAME = "RiftSaw_144";
+
+ public RiftSaw144TestCase() {
+ super(TEST_NAME);
+ }
+
+ public static Test suite() {
+ return(new RiftSawTestSetup(RiftSaw144TestCase.class,
+ TEST_NAME,
"RiftSaw_144.esb,../Quickstart_bpel_hello_world/Quickstart_bpel_hello_world-1.jar"));
+ }
+
+ public void testSendHello() throws Exception {
+ String result=sendESBMessage("Hello World via ESB to BPEL",
"HelloWorldBPELESB", "SayHello");
+
+ assertMessage(result, "Hello World via ESB to BPEL World");
+ }
+}
Deleted:
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw144TestCase.java
===================================================================
---
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw144TestCase.java 2010-10-07
08:42:24 UTC (rev 1028)
+++
trunk/integration-tests/src/test/java/org/jboss/soa/bpel/tests/testcases/RiftSaw144TestCase.java 2010-10-07
09:01:26 UTC (rev 1029)
@@ -1,50 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file 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.jboss.soa.bpel.tests.testcases;
-
-import org.jboss.soa.bpel.tests.RiftSawTest;
-import org.jboss.soa.bpel.tests.RiftSawTestSetup;
-
-import junit.framework.Test;
-
-/**
- * Test case for running the Quickstart_bpel_hello_world sample.
- */
-public class RiftSaw144TestCase extends RiftSawTest {
-
- private static final String TEST_NAME = "RiftSaw_144";
-
- public RiftSaw144TestCase() {
- super(TEST_NAME);
- }
-
- public static Test suite() {
- return(new RiftSawTestSetup(RiftSaw144TestCase.class,
- TEST_NAME,
"RiftSaw_144.esb,../Quickstart_bpel_hello_world/Quickstart_bpel_hello_world-1.jar"));
- }
-
- public void testSendHello() throws Exception {
- String result=sendESBMessage("Hello World via ESB to BPEL",
"HelloWorldBPELESB", "SayHello");
-
- assertMessage(result, "Hello World via ESB to BPEL World");
- }
-}