@Test
@Ignore // todo implement value coding in ValueConverter
public void addSmallBinaryProperty() throws RepositoryException, IOException {
Node parentNode = getNode(TEST_PATH);
InputStream is = new NumberStream(1234);
Binary bin = getSession().getValueFactory().createBinary(is);
addProperty(parentNode, "bigBinary", getSession().getValueFactory().createValue(bin));
}