Package test

Examples of test.Echo


            logger.info(new SourceTransformer().toString(me.getOutMessage().getContent()));
        }
    }
   
    public void testProxy() throws Exception {
        Echo echo = (Echo) context.getBean("proxy");
        String result = echo.echo("world");
        assertEquals("world", result);
    }
View Full Code Here


        String result = echo.echo("world");
        assertEquals("world", result);
    }
   
    public void testProxyOneWay() throws Exception {
        Echo echo = (Echo) context.getBean("proxy");
        echo.oneWay("world");
    }
View Full Code Here

            logger.info(new SourceTransformer().toString(me.getOutMessage().getContent()));
        }
    }
   
    public void testProxy() throws Exception {
        Echo echo = (Echo) context.getBean("proxy");
        String result = echo.echo("world");
        assertEquals("world", result);
    }
View Full Code Here

TOP

Related Classes of test.Echo

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.