@Test
public void testCircularDependencyPojos() {
Parent parent = factory.manufacturePojo(Parent.class);
Assert.assertNotNull("The parent pojo cannot be null!", parent);
Child child = parent.getChild();
Assert.assertNotNull("The child pojo cannot be null!", child);
}