* {@link org.springframework.richclient.form.AbstractForm#addChildForm(org.springframework.richclient.form.Form)}.
*/
public void testAddChildForm() {
TestBean testBean = new TestBean();
testBean.setNestedProperty(new TestBean());
HierarchicalFormModel model = new DefaultFormModel(testBean);
ValidatingFormModel childModel = FormModelHelper.createChildPageFormModel(model, "test", "nestedProperty");
AbstractForm form = new TestAbstractForm(model);
form.addChildForm(new TestAbstractForm(childModel));
}