summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-07-02 15:04:29 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-07-02 15:04:29 +0000
commit6194ba122c243f157ee6657b51e02b967dbd9b1a (patch)
tree799c52e71b666accd05e8cc2993559f84b1777ef /java
parent974807211aafc4230a3f9b303468e21074098ab1 (diff)
Minor fixes on variable/method scope required by junit 4.5 tests
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@790614 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/sca/itest/bpel/helloworld-reference/src/test/java/greetings/GreetingsTestCase.java8
-rw-r--r--java/sca/itest/bpel/helloworld-reference/src/test/java/helloworld/HelloWorldTestCase.java10
2 files changed, 10 insertions, 8 deletions
diff --git a/java/sca/itest/bpel/helloworld-reference/src/test/java/greetings/GreetingsTestCase.java b/java/sca/itest/bpel/helloworld-reference/src/test/java/greetings/GreetingsTestCase.java
index 1035641947..24ab0a4181 100644
--- a/java/sca/itest/bpel/helloworld-reference/src/test/java/greetings/GreetingsTestCase.java
+++ b/java/sca/itest/bpel/helloworld-reference/src/test/java/greetings/GreetingsTestCase.java
@@ -36,15 +36,15 @@ import org.junit.Test;
*/
public class GreetingsTestCase {
- private Node node;
+ private static Node node;
/**
* @throws java.lang.Exception
*/
@BeforeClass
- protected void setUp() throws Exception {
+ public static void setUp() throws Exception {
String location = ContributionLocationHelper.getContributionLocation("greetings/greetings.composite");
- node = NodeFactory.newInstance().createNode("CallBackApiTest.composite", new Contribution("c1", location));
+ node = NodeFactory.newInstance().createNode("greetings/greetings.composite", new Contribution("c1", location));
node.start();
}
@@ -52,7 +52,7 @@ public class GreetingsTestCase {
* @throws java.lang.Exception
*/
@AfterClass
- protected void tearDown() throws Exception {
+ public static void tearDown() throws Exception {
node.stop();
}
diff --git a/java/sca/itest/bpel/helloworld-reference/src/test/java/helloworld/HelloWorldTestCase.java b/java/sca/itest/bpel/helloworld-reference/src/test/java/helloworld/HelloWorldTestCase.java
index 5bf064b701..a9268ac1b5 100644
--- a/java/sca/itest/bpel/helloworld-reference/src/test/java/helloworld/HelloWorldTestCase.java
+++ b/java/sca/itest/bpel/helloworld-reference/src/test/java/helloworld/HelloWorldTestCase.java
@@ -27,6 +27,7 @@ import org.apache.tuscany.sca.node.Node;
import org.apache.tuscany.sca.node.NodeFactory;
import org.junit.AfterClass;
import org.junit.BeforeClass;
+import org.junit.Test;
/**
* Tests the BPEL Helloworld Service
@@ -34,15 +35,15 @@ import org.junit.BeforeClass;
* @version $Rev$ $Date$
*/
public class HelloWorldTestCase {
- private Node node;
+ private static Node node;
/**
* @throws java.lang.Exception
*/
@BeforeClass
- protected void setUp() throws Exception {
+ public static void setUp() throws Exception {
String location = ContributionLocationHelper.getContributionLocation("helloworld/helloworld.composite");
- node = NodeFactory.newInstance().createNode("CallBackApiTest.composite", new Contribution("c1", location));
+ node = NodeFactory.newInstance().createNode("helloworld/helloworld.composite", new Contribution("c1", location));
node.start();
}
@@ -50,10 +51,11 @@ public class HelloWorldTestCase {
* @throws java.lang.Exception
*/
@AfterClass
- protected void tearDown() throws Exception {
+ public static void tearDown() throws Exception {
node.stop();
}
+ @Test
public void testServiceInvocation() {
HelloWorldService bpelService = node.getService(HelloWorldService.class, "HelloWorldService");
String response = bpelService.hello("Luciano");