Package gnu.testlet.org.omg.CORBA.ORB.communication

Examples of gnu.testlet.org.omg.CORBA.ORB.communication.returnThis


  {
    passThis arg = new passThis();
    arg.a = "A";
    arg.b = "B";

    returnThis r = object.passStructure(arg);

    assertEquals("struct, string field", r.c, "AB");
    assertEquals("struct, int field", r.n, 555);

    assertEquals("array", r.arra [ 0 ], 11);
View Full Code Here

TOP

Related Classes of gnu.testlet.org.omg.CORBA.ORB.communication.returnThis

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.