n.setProperty("jcr:title", "blah blah");
testRootNode.getSession().save();
// remove mix:title, jcr:title should be gone as there's no matching
// definition in nt:folder
n.removeMixin("mix:title");
testRootNode.getSession().save();
assertFalse(n.hasProperty("jcr:title"));
// add mix:title to a nt:unstructured node and set jcr:title property
Node n1 = testRootNode.addNode(nodeName2, ntUnstructured);