nodeType.canSetProperty(propDef.getName(), doubleValue));
Value longValue = NodeTypeUtil.getValueOfType(session, PropertyType.LONG);
assertTrue("canSetProperty(String propertyName, Value value) must return " +
"true if the property is of type Binary and value is a LongValue",
nodeType.canSetProperty(propDef.getName(), longValue));
Value booleanValue = NodeTypeUtil.getValueOfType(session, PropertyType.BOOLEAN);
assertTrue("canSetProperty(String propertyName, Value value) must return " +
"true if the property is of type Binary and value is a BooleanValue",
nodeType.canSetProperty(propDef.getName(), booleanValue));