diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-05-17 11:14:45 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-05-17 11:14:45 +0000 |
commit | b2f9f61749643ff11f021a61f24f73670e35f823 (patch) | |
tree | 74e0ca4dfb9234d041d48963356e195b4bece58a | |
parent | b20902a4e5bcf28398b737c3bc6d4d1d3b34d267 (diff) |
Update for latest domain node changes
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1104147 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java b/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java index d02575fcce..1e59e3e34e 100644 --- a/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java +++ b/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java @@ -46,8 +46,10 @@ public class ClientTestCase{ public static void setUpBeforeClass() throws Exception {
node = TuscanyRuntime.newInstance().createNode(domainURI);
node.installContribution("../helloworld-iface/target/classes");
- node.installContribution("../helloworld-service/target/classes");
- node.installContribution("../helloworld-client/target/classes");
+ String c1 = node.installContribution("../helloworld-service/target/classes");
+ String c2 = node.installContribution("../helloworld-client/target/classes");
+ node.startDeployables(c1);
+ node.startDeployables(c2);
}
@Test
|