summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/testing/itest/data-copy/driver
diff options
context:
space:
mode:
authorscottkurz <scottkurz@13f79535-47bb-0310-9956-ffa450edef68>2011-08-01 20:31:56 +0000
committerscottkurz <scottkurz@13f79535-47bb-0310-9956-ffa450edef68>2011-08-01 20:31:56 +0000
commit03bbf3e072f32f96cdcc40d905e875fb54c45fc0 (patch)
tree8072e8695ed2816c9869e9d77db27cfa08b85c74 /sca-java-2.x/trunk/testing/itest/data-copy/driver
parentd9b28c9010d1305dc9eb676e2f8fb92026907ea5 (diff)
Switch cross-databinding test from SDO (which I can't get working) to DOM, but left tests @Ignore(d)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1152925 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/testing/itest/data-copy/driver')
-rw-r--r--sca-java-2.x/trunk/testing/itest/data-copy/driver/src/test/java/itest/CrossContribTestCase.java24
1 files changed, 13 insertions, 11 deletions
diff --git a/sca-java-2.x/trunk/testing/itest/data-copy/driver/src/test/java/itest/CrossContribTestCase.java b/sca-java-2.x/trunk/testing/itest/data-copy/driver/src/test/java/itest/CrossContribTestCase.java
index 88b747856d..a08cbe41d7 100644
--- a/sca-java-2.x/trunk/testing/itest/data-copy/driver/src/test/java/itest/CrossContribTestCase.java
+++ b/sca-java-2.x/trunk/testing/itest/data-copy/driver/src/test/java/itest/CrossContribTestCase.java
@@ -102,36 +102,38 @@ public class CrossContribTestCase {
@Test
@Ignore
- public void testJSONSCA() throws Exception {
+ public void testDOMSCA() throws Exception {
ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
assertNotNull(client);
- client.callJSON();
+ client.callDOM();
}
@Test
@Ignore
- public void testJSONWS() throws Exception {
+ public void testDOMWS() throws Exception {
ClientIntf client = node.getService(ClientIntf.class, "ClientWS");
assertNotNull(client);
- client.callJSON();
+ client.callDOM();
}
-
+
@Test
@Ignore
- public void testSDOWS() throws Exception {
- ClientIntf client = node.getService(ClientIntf.class, "ClientWS");
+ public void testJSONSCA() throws Exception {
+ ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
assertNotNull(client);
- client.callSDO();
+ client.callJSON();
}
@Test
@Ignore
- public void testSDOSCA() throws Exception {
- ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
+ public void testJSONWS() throws Exception {
+ ClientIntf client = node.getService(ClientIntf.class, "ClientWS");
assertNotNull(client);
- client.callSDO();
+ client.callJSON();
}
+
+
@Test
public void testDOMIdentitySCA() throws Exception {
ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");