shorterContent[i] = validByteArrayContent[i];
}
BinaryValue another = new InMemoryBinaryValue(store, shorterContent);
assertThat(binary.equals(another), is(false));
assertThat(binary.compareTo(another) > 0, is(true));
assertThat(another.compareTo(binary) < 0, is(true));
assertThat(another, hasContent(shorterContent));
}
@Test
public void shouldComputeSha1HashOfEmptyContent() throws Exception {