* <field name="a" depth="X"/>
*/
public void testLoadingDoubleDepthUnlimited() {
logger.log(BasicLevel.DEBUG, "************testLoadingDoubleDepthUnlimited**************");
Country country = new Country("p","Portugal");
Address address = new Address("Rue Christiano", "Lisbonne", country);
Person parent = new Person();
parent.setName("Simoes Joel");
parent.setAge(63);
parent.setAddress(address);
Person child1 = new Person("Simoes Sofia", address, null, 30);