Examples of expectedBodiesReceived()


Examples of org.apache.camel.component.mock.MockEndpoint.expectedBodiesReceived()

public class SimpleRouteTest extends SpringTestSupport {
    protected Object expectedBody = "<hello>world!</hello>";

    public void testSimpleRoute() throws Exception {
        MockEndpoint resultEndpoint = resolveMandatoryEndpoint("mock:result", MockEndpoint.class);
        resultEndpoint.expectedBodiesReceived(expectedBody);

        template.sendBody("direct:start", expectedBody);

        resultEndpoint.assertIsSatisfied();
    }
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.