assert other.get(2).equals("three");
}
@Test
public void map() throws Exception {
Map<String, String> map = new StringMap();
map.put("1", "one");
map.put("2", "two");
map.put("3", "three");
Map<String, String> other = writeThenRead(map);
assert other.size() == 3;
assert other.get("1").equals("one");
assert other.get("2").equals("two");