// checkSkinPresence(portlets, null);
print("Using the PortalToolkit. All Portlets and PsmlEntries (individual portlets) ");
print("should now be using the system default skin, " + this.defaultSkin);
PortletSet pSet = PortalToolkit.getSet(portlets);
assertNotNull(pSet);
// Checking if we are at the root
isRoot(pSet);
checkPortletSkinValues(pSet, new HashMap(), doc);
print("Saving test document...");
saveDocument(doc);
printOk();
print("Re-run check to make sure that the default setting did not get written...");
PSMLDocument doc2 = getDocumentFromPath(file.getPath());
Portlets portlets2 = doc.getPortlets();
PortletSet pSet2 = PortalToolkit.getSet(portlets2);
checkPortletSkinValues(pSet2, new HashMap(), doc2);
printDivider();
}