in src/main/java/org/apache/sling/testing/mock/jcr/MockNode.java [419:428]
public Item getPrimaryItem() throws RepositoryException {
// support "jcr:content" node and "jcr:data" property as primary items
if (hasProperty(JcrConstants.JCR_DATA)) {
return getProperty(JcrConstants.JCR_DATA);
} else if (hasNode(JcrConstants.JCR_CONTENT)) {
return getNode(JcrConstants.JCR_CONTENT);
} else {
throw new ItemNotFoundException();
}
}