public void testStorageMemoryReplication4() {
StorageMemory storageMemoryReplication = new StorageMemory();
Number160 testLoc = Number160.createHash("loc1");
Number160 testPer1 = Number160.createHash("peer1");
Number160 testPer2 = Number160.createHash("peer2");
storageMemoryReplication.updateResponsibilities(testLoc, testPer1);
storageMemoryReplication.updateResponsibilities(testLoc, testPer2);
Assert.assertEquals(testLoc, storageMemoryReplication.findContentForResponsiblePeerID(testPer1)
.iterator().next());
Assert.assertEquals(testLoc, storageMemoryReplication.findContentForResponsiblePeerID(testPer2)
.iterator().next());