@Test
public void parse_import_each_other() throws Exception {
ApplicationContext ctx = new XmlApplicationContext(new FileSystemResource(new File(srcdir,
"test-import-each-other.xml")));
Test1 test1 = new Test1(new Test3(new Test1()), new Test4(new Test2()));
Test3 test3 = new Test3(new Test1());
assertEquals(test1, ctx.getBean("test1"));
assertEquals(test3, ctx.getBean("test3"));
}