summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/testing/itest/data-copy/driver
diff options
context:
space:
mode:
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");