summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/itest/ws/http-ssl/src/test/java/org/apache/tuscany
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-2.x/trunk/itest/ws/http-ssl/src/test/java/org/apache/tuscany')
-rw-r--r--sca-java-2.x/trunk/itest/ws/http-ssl/src/test/java/org/apache/tuscany/sca/binding/ws/axis2/HTTPSTestCase.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/itest/ws/http-ssl/src/test/java/org/apache/tuscany/sca/binding/ws/axis2/HTTPSTestCase.java b/sca-java-2.x/trunk/itest/ws/http-ssl/src/test/java/org/apache/tuscany/sca/binding/ws/axis2/HTTPSTestCase.java
index f117c5d4ec..63b781529e 100644
--- a/sca-java-2.x/trunk/itest/ws/http-ssl/src/test/java/org/apache/tuscany/sca/binding/ws/axis2/HTTPSTestCase.java
+++ b/sca-java-2.x/trunk/itest/ws/http-ssl/src/test/java/org/apache/tuscany/sca/binding/ws/axis2/HTTPSTestCase.java
@@ -31,6 +31,7 @@ public class HTTPSTestCase extends TestCase {
private Node node;
private HelloWorld helloWorld;
private HelloWorld helloWorld2;
+ private HelloWorld helloWorld3;
@Override
protected void setUp() throws Exception {
@@ -38,11 +39,13 @@ public class HTTPSTestCase extends TestCase {
node.start();
helloWorld = node.getService(HelloWorld.class, "HelloWorldClient");
helloWorld2 = node.getService(HelloWorld.class, "HelloWorldClient2");
+ helloWorld3 = node.getService(HelloWorld.class, "HelloWorldClient3");
}
public void testCalculator() throws Exception {
assertEquals("Hello petra", helloWorld.getGreetings("petra"));
assertEquals("Hello petra", helloWorld2.getGreetings("petra"));
+ assertEquals("Hello petra", helloWorld3.getGreetings("petra"));
}
@Override