f = createResult(FAILURE, "Child is not fileable! Id: " + child.getId() + " / Type: "
+ child.getType().getId());
addResult(results, assertIsTrue(child instanceof FileableCmisObject, null, f));
if (child instanceof FileableCmisObject) {
FileableCmisObject fileableChild = (FileableCmisObject) child;
List<Folder> parents = fileableChild.getParents();
f = createResult(FAILURE, "Child has no parents! Id: " + child.getId());
addResult(results, assertIsTrue(parents.size() > 0, null, f));
boolean foundParent = false;