Examples of Waggle


Examples of com.metaparadigm.jsonrpc.test.Test.Waggle

    assertTrue(Arrays.equals(ints, test.echo(ints)));
    String[] strs= { "foo", "bar", "baz" };
    assertTrue(Arrays.equals(strs, test.echo(strs)));
    Wiggle wiggle= new Wiggle();
    assertEquals(wiggle.toString(), test.echo(wiggle).toString());
    Waggle waggle= new Waggle();
    assertEquals(waggle.toString(), test.echo(waggle).toString());
    assertEquals('?', test.echoChar('?'));
    Integer into= new Integer(1234567890);
    assertEquals(into, test.echoIntegerObject(into));
    Long longo= new Long(1099511627776L);
    assertEquals(longo, test.echoLongObject(longo));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.