Examples of Unity


Examples of org.apache.camel.dataformat.bindy.model.padding.Unity

    public void testMarshalling1() throws Exception {
        MockEndpoint mock = getMockEndpoint("mock:marshal");
        mock.expectedMessageCount(1);
        mock.expectedBodiesReceived("050,010\r\n");

        Unity unity = new Unity();
        unity.setMandant(50f);
        unity.setReceiver(10f);
        template.sendBody("direct:marshal", unity);

        assertMockEndpointsSatisfied();
    }
View Full Code Here

Examples of org.apache.camel.dataformat.bindy.model.padding.Unity

    public void testMarshalling2() throws Exception {
        MockEndpoint mock = getMockEndpoint("mock:marshal");
        mock.expectedMessageCount(1);
        mock.expectedBodiesReceived("080,001\r\n");

        Unity unity = new Unity();
        unity.setMandant(80f);
        unity.setReceiver(1f);
        template.sendBody("direct:marshal", unity);

        assertMockEndpointsSatisfied();
    }
View Full Code Here

Examples of org.apache.camel.dataformat.bindy.model.padding.Unity

    public void testMarshalling3() throws Exception {
        MockEndpoint mock = getMockEndpoint("mock:marshal");
        mock.expectedMessageCount(1);
        mock.expectedBodiesReceived("000,000\r\n");

        Unity unity = new Unity();
        unity.setMandant(0f);
        unity.setReceiver(0f);
        template.sendBody("direct:marshal", unity);

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