Package org.objectweb.header_test.types

Examples of org.objectweb.header_test.types.TestHeader2


        }
    }

    public void testOutHeader() throws Exception {
        try {
            TestHeader2 in = new TestHeader2();
            String val = new String(TestHeader2Response.class.getSimpleName());
            Holder<TestHeader2Response> out = new Holder<TestHeader2Response>();
            Holder<TestHeader2Response> outHeader = new Holder<TestHeader2Response>();
            for (int idx = 0; idx < 2; idx++) {
                val += idx;               
                in.setRequestType(val);
                proxy.testHeader2(in, out, outHeader);
               
                assertEquals(val, out.value.getResponseType());
                assertEquals(val, outHeader.value.getResponseType());
            }
View Full Code Here

TOP

Related Classes of org.objectweb.header_test.types.TestHeader2

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.