Region parent = context.getBean("complexNested", Region.class);
Region child1 = context.getBean("/complexNested/child1", Region.class);
Region child2 = context.getBean("/complexNested/child2", Region.class);
Region grandchild11 = context.getBean("/complexNested/child1/grandChild11", Region.class);
ReplicatedRegionFactoryBean grandchild11FactoryBean = context.getBean("&/complexNested/child1/grandChild11",
ReplicatedRegionFactoryBean.class);
assertNotNull(grandchild11FactoryBean);
CacheLoader expectedCacheLoader = TestUtils.readField("cacheLoader", grandchild11FactoryBean);