/**
* 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);
}