assert other.getMap().get("3").equals("three");
}
@Test
public void list() throws Exception {
List<String> list = new StringList();
list.add("one");
list.add("two");
list.add("three");
List<String> other = writeThenRead(list);
assert other.size() == 3;
assert other.get(0).equals("one");
assert other.get(1).equals("two");