public void addMultiValuedBinary() throws RepositoryException {
Node parentNode = getNode(TEST_PATH);
Value[] values = new Value[2];
InputStream is = new ByteArrayInputStream("foo".getBytes());
Binary bin = getAdminSession().getValueFactory().createBinary(is);
values[0] = getAdminSession().getValueFactory().createValue(bin);
is = new ByteArrayInputStream("bar".getBytes());
bin = getAdminSession().getValueFactory().createBinary(is);
values[1] = getAdminSession().getValueFactory().createValue(bin);