}
@Test
public void testCircularDependencyCollection() {
RecursiveList pojo = factory.manufacturePojo(RecursiveList.class);
Assert.assertNotNull("The pojo cannot be null!", pojo);
Assert.assertNotNull("The pojo's list cannot be null!", pojo.getList());
Assert.assertTrue("The pojo's list cannot be empty!", !pojo.getList()
.isEmpty());
for (RecursiveList listValue : pojo.getList()) {
Assert.assertNotNull("The pojo's list element cannot be null!",
listValue);
}
}