Package itest.common.intf

Examples of itest.common.intf.ClientIntf


    // 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);
    }
View Full Code Here


        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();
    }
View Full Code Here

        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();
    }
View Full Code Here

    }
   
    @Test
    @Ignore
    public void testJSONSCA() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
        assertNotNull(client);
        client.callJSON();
    }
View Full Code Here

    }

    @Test
    @Ignore
    public void testJSONWS() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientWS");
        assertNotNull(client);
        client.callJSON();
    }
View Full Code Here



    @Test
    public void testDOMIdentitySCA() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
        assertNotNull(client);
        client.testRoundTripDOMIdentity();
    }
View Full Code Here

        client.testRoundTripDOMIdentity();
    }

    @Test
    public void testDOMIdentityWS() throws Exception {
        ClientIntf client = node.getService(ClientIntf.class, "ClientSCA");
        assertNotNull(client);
        client.testRoundTripDOMIdentity();
    }
View Full Code Here

TOP

Related Classes of itest.common.intf.ClientIntf

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.