115116117118119120121122123
// so remove this test. // public void testSameObjectWS() throws Exception { @Test public void testDifferentObjectWS() throws Exception { ClientIntf client = node.getService(ClientIntf.class, "ClientWS"); assertNotNull(client); client.callObjectGraphCheck(2); }
122123124125126127128129130
client.callObjectGraphCheck(2); } @Test // Fails for 3894, (rename test) public void testDOMSCA() throws Exception { ClientIntf client = node.getService(ClientIntf.class, "ClientSCA"); assertNotNull(client); client.callDOM(); }
129130131132133134135136137
client.callDOM(); } @Test // Output DB treated as DOM, rather than String public void testDOMWS() throws Exception { ClientIntf client = node.getService(ClientIntf.class, "ClientWS"); assertNotNull(client); client.callDOM(); }
137138139140141142143144145
} @Test @Ignore public void testJSONSCA() throws Exception { ClientIntf client = node.getService(ClientIntf.class, "ClientSCA"); assertNotNull(client); client.callJSON(); }
145146147148149150151152153
} @Test @Ignore public void testJSONWS() throws Exception { ClientIntf client = node.getService(ClientIntf.class, "ClientWS"); assertNotNull(client); client.callJSON(); }
154155156157158159160161162
@Test public void testDOMIdentitySCA() throws Exception { ClientIntf client = node.getService(ClientIntf.class, "ClientSCA"); assertNotNull(client); client.testRoundTripDOMIdentity(); }
161162163164165166167168169
client.testRoundTripDOMIdentity(); } @Test public void testDOMIdentityWS() throws Exception { ClientIntf client = node.getService(ClientIntf.class, "ClientSCA"); assertNotNull(client); client.testRoundTripDOMIdentity(); }