// assertTrue(type.canSetProperty("jcr:data", new BinaryValue("test")));
assertFalse(type.canSetProperty("jcr:data", new BinaryValue[]{new BinaryValue("test")}));
assertFalse(type.canSetProperty("jcr:notFound", new BinaryValue("test")));
// [PN] 06.03.06 Row below commented
// assertFalse(type.canSetProperty("jcr:data", new StringValue("test")));
assertFalse(type.canRemoveItem("jcr:data"));
assertFalse(type.canRemoveItem("jcr:notFound"));
node = root.addNode("node2", "nt:file");
type = node.getPrimaryNodeType();
// does not work - TODO