diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2011-04-27 10:23:03 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2011-04-27 10:23:03 +0000 |
commit | 3ebc74f23e3abac07ba4f27b8f6f35fd0355fe9f (patch) | |
tree | 406fd64c999b73b6438f78f259591cfa92cfe9f5 /sca-java-2.x/trunk/testing/itest/nodes/one-node-test | |
parent | 1ebfd32a5c84032e2ad65ebefd8a8b6c2fca2318 (diff) |
Fix up the tests to use the iface contribution appropriately
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1097065 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/testing/itest/nodes/one-node-test')
-rw-r--r-- | sca-java-2.x/trunk/testing/itest/nodes/one-node-test/src/test/java/itest/OneNodeTestCase.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/testing/itest/nodes/one-node-test/src/test/java/itest/OneNodeTestCase.java b/sca-java-2.x/trunk/testing/itest/nodes/one-node-test/src/test/java/itest/OneNodeTestCase.java index 6d49b718ef..93f5863010 100644 --- a/sca-java-2.x/trunk/testing/itest/nodes/one-node-test/src/test/java/itest/OneNodeTestCase.java +++ b/sca-java-2.x/trunk/testing/itest/nodes/one-node-test/src/test/java/itest/OneNodeTestCase.java @@ -45,6 +45,7 @@ public class OneNodeTestCase{ System.setProperty("org.apache.tuscany.sca.contribution.processor.ValidationSchemaExtensionPoint.enabled", "false"); NodeFactory factory = NodeFactory.newInstance(); node = factory.createNode( + new Contribution("iface", getJar("../helloworld-iface/target")), new Contribution("service", getJar("../helloworld-service/target")), new Contribution("client", getJar("../helloworld-client/target"))); node.start(); |