shorterContent[i] = validByteArrayContent[i];
}
Binary another = new InMemoryBinary(shorterContent);
assertThat(binary.equals(another), is(false));
assertThat(binary.compareTo(another), is(1));
assertThat(another.compareTo(binary), is(-1));
assertThat(another, hasContent(shorterContent));
}
@Test
public void shouldComputeSha1HashOfEmptyContent() throws Exception {