Assert.assertEquals(null, storageMemoryReplication.findPeerIDsForResponsibleContent(testLoc));
}
@Test
public void testStorageMemoryReplication7() {
StorageMemory storageMemoryReplication = new StorageMemory();
Number160 testLoc = Number160.createHash("test1");
Number160 testPer1 = Number160.createHash("test2");
Number160 testPer2 = Number160.createHash("test3");
storageMemoryReplication.updateResponsibilities(testLoc, testPer1);
storageMemoryReplication.updateResponsibilities(testLoc, testPer2);
storageMemoryReplication.removeResponsibility(testLoc);
Assert.assertEquals(null, storageMemoryReplication.findPeerIDsForResponsibleContent(testLoc));
Assert.assertEquals(null, storageMemoryReplication.findContentForResponsiblePeerID(testPer1));
Assert.assertEquals(null, storageMemoryReplication.findContentForResponsiblePeerID(testPer2));
}