Package org.openengsb.core.api.model

Examples of org.openengsb.core.api.model.BeanDescription.toObject()


    @Test
    public void testWrapAndUnWrapSimpleBean_shouldBeEqualObject() throws Exception {
        SimpleTestBean bean = new SimpleTestBean("42", 42L);
        BeanDescription beanDescription = BeanDescription.fromObject(bean);
        SimpleTestBean bean2 = beanDescription.toObject(SimpleTestBean.class);

        assertThat(bean2.getLongValue(), is(42L));
        assertThat(bean2.getStringValue(), is("42"));
    }
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.