assertEquals(l2, bigString);
}
@Test public void testNoArgumentConstructorInJavaSerialization() throws ClassNotFoundException, IOException {
SimpleEntry a = new SimpleEntry(1, "11");
ByteArrayOutputStream out = new ByteArrayOutputStream();
new ObjectOutputStream(out).writeObject(a);
ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(out.toByteArray()));
SimpleEntry a2 = (SimpleEntry) in.readObject();
assertEquals(a, a2);
}