summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-01-23 13:01:49 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-01-23 13:01:49 +0000
commit74f4ba1afbf3a2914bcbe4ee65cbfb6a7824d7bd (patch)
tree3f688b06a32d7108581f06ef3d1a5a9576ec68be /sca-java-2.x/trunk
parent7d97c341738d3cb5c0969374215a78b0df31da0d (diff)
Uncomment out test method that was inadvertently committed commented out
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@902402 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk')
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java
index 298fdcdbbd..80c36e5ee9 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-test/src/test/java/itest/TwoNodesTestCase.java
@@ -72,16 +72,16 @@ public class TwoNodesTestCase {
throw new IllegalStateException("Can't find jar in: " + targetDirectory);
}
-// @Test
-// public void testCalculator() throws Exception {
-// Helloworld service = serviceNode.getService(Helloworld.class, "HelloworldService");
-// assertNotNull(service);
-// assertEquals("Hello Petra", service.sayHello("Petra"));
-//
-// Helloworld client = clientNode.getService(Helloworld.class, "HelloworldClient");
-// assertNotNull(client);
-// assertEquals("Hi Hello Petra", client.sayHello("Petra"));
-// }
+ @Test
+ public void testCalculator() throws Exception {
+ Helloworld service = serviceNode.getService(Helloworld.class, "HelloworldService");
+ assertNotNull(service);
+ assertEquals("Hello Petra", service.sayHello("Petra"));
+
+ Helloworld client = clientNode.getService(Helloworld.class, "HelloworldClient");
+ assertNotNull(client);
+ assertEquals("Hi Hello Petra", client.sayHello("Petra"));
+ }
@Test
public void testCalculatorClientAPI() throws Exception {