You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2011/05/17 13:14:46 UTC

svn commit: r1104147 - /tuscany/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java

Author: antelder
Date: Tue May 17 11:14:45 2011
New Revision: 1104147

URL: http://svn.apache.org/viewvc?rev=1104147&view=rev
Log:
Update for latest domain node changes

Modified:
    tuscany/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java

Modified: tuscany/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java?rev=1104147&r1=1104146&r2=1104147&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java (original)
+++ tuscany/sca-java-2.x/trunk/testing/itest/nodes/one-jvm-hazelcast-client/src/test/java/itest/ClientTestCase.java Tue May 17 11:14:45 2011
@@ -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