Package test.destination

Examples of test.destination.BBean


    /**
     * Test of readDottedProperty method, of class BeanUtils.
     */
    public void testReadDottedProperty() {
        ABean a = new ABean();
        BBean b = new BBean();
        a.setCharProperty('C');
        b.setParent(a);
        Character c = (Character) BeanUtils.readDottedProperty("parent.charProperty", b);
        assertEquals( Character.valueOf('C'), c);
    }
View Full Code Here

TOP

Related Classes of test.destination.BBean

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.