Package org.apache.tuscany.sca.itest.databindings.jaxb

Examples of org.apache.tuscany.sca.itest.databindings.jaxb.PrimitivesServiceClient


     * Invokes the PrimitivesService service using WS binding.
     * Service method invoked is negateLong.
     */
    @Test
    public void testW2JNegateLong() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2JComponent");
        performTestNegateLong(primitivesServiceClient);
    }
View Full Code Here


     * Invokes the PrimitivesService service using WS binding.
     * Service method invoked is negateLongArray.
     */
    @Test
    public void testW2JNegateLongArray() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2JComponent");
        performTestNegateLongArray(primitivesServiceClient);
    }
View Full Code Here

     * Test the pass-by-value semantics of a remotable service with WS binding.
     * Test for long array.
     */
    @Test
    public void testW2JPassByValueLongArray() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2JComponent");
        Assert.assertTrue(primitivesServiceClient.passByValueLongArray());
    }
View Full Code Here

     * Invokes the PrimitivesService service using WS binding.
     * Service method invoked is negateFloat.
     */
    @Test
    public void testW2JNegateFloat() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2JComponent");
        performTestNegateFloat(primitivesServiceClient);
    }
View Full Code Here

     * Invokes the PrimitivesService service using WS binding.
     * Service method invoked is negateFloatArray.
     */
    @Test
    public void testW2JNegateFloatArray() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2JComponent");
        performTestNegateFloatArray(primitivesServiceClient);
    }
View Full Code Here

     * Test the pass-by-value semantics of a remotable service with WS binding.
     * Test for float array.
     */
    @Test
    public void testW2JPassByValueFloatArray() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2JComponent");
        Assert.assertTrue(primitivesServiceClient.passByValueFloatArray());
    }
View Full Code Here

     * Invokes the PrimitivesService service using WS binding.
     * Service method invoked is negateDouble.
     */
    @Test
    public void testW2JNegateDouble() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2JComponent");
        performTestNegateDouble(primitivesServiceClient);
    }
View Full Code Here

     * Invokes the PrimitivesService service using WS binding.
     * Service method invoked is negateDoubleArray.
     */
    @Test
    public void testW2JNegateDoubleArray() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2JComponent");
        performTestNegateDoubleArray(primitivesServiceClient);
    }
View Full Code Here

     * Test the pass-by-value semantics of a remotable service with WS binding.
     * Test for double array.
     */
    @Test
    public void testW2JPassByValueDoubleArray() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2JComponent");
        Assert.assertTrue(primitivesServiceClient.passByValueDoubleArray());
    }
View Full Code Here

     * Invokes the PrimitivesService service using WS binding.
     * Service method invoked is negateBoolean.
     */
    @Test
    public void testW2WNegateBoolean() throws Exception {
        PrimitivesServiceClient primitivesServiceClient = domain.getService(PrimitivesServiceClient.class, "PrimitivesServiceClientW2WComponent");
        performTestNegateBoolean(primitivesServiceClient);
    }
View Full Code Here

TOP

Related Classes of org.apache.tuscany.sca.itest.databindings.jaxb.PrimitivesServiceClient

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.