nodeType.canSetProperty(propDef.getName(), stringValue));
Value binaryValue = NodeTypeUtil.getValueOfType(session, PropertyType.BINARY);
assertTrue("canSetProperty(String propertyName, Value value) must return " +
"true if the property is of type Binary and value is a BinaryValue",
nodeType.canSetProperty(propDef.getName(), binaryValue));
Value dateValue = NodeTypeUtil.getValueOfType(session, PropertyType.DATE);
assertTrue("canSetProperty(String propertyName, Value value) must return " +
"true if the property is of type Binary and value is a DateValue",
nodeType.canSetProperty(propDef.getName(), dateValue));