Package org.apache.tuscany.sca.test.corba.generated

Examples of org.apache.tuscany.sca.test.corba.generated.ScenarioSix.passAnnotatedStruct()


            String[][] stringArg = getStringArray();
            String[][] stringRes = ref.passStringArray(stringArg);
            assertTrue(areArraysEqual(stringArg, stringRes));
            AnnotatedStruct structArg = new AnnotatedStruct();
            structArg.stringArray = getStringArray();
            AnnotatedStruct structRes = ref.passAnnotatedStruct(structArg);
            assertTrue(areArraysEqual(structArg.stringArray, structRes.stringArray));
        } catch (Exception e) {
            e.printStackTrace();
            fail();
        }
View Full Code Here


            String[][] stringArg = getStringArray();
            String[][] stringRes = ref.passStringArray(stringArg);
            assertTrue(areArraysEqual(stringArg, stringRes));
            AnnotatedStruct structArg = new AnnotatedStruct();
            structArg.stringArray = getStringArray();
            AnnotatedStruct structRes = ref.passAnnotatedStruct(structArg);
            assertTrue(areArraysEqual(structArg.stringArray, structRes.stringArray));
        } catch (Exception e) {
            e.printStackTrace();
            fail();
        }
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.