Assert.assertEquals(Integer.toString(Integer.MIN_VALUE), out.toString());
}
public void test_13_long() throws Exception {
SerializeWriter out = new SerializeWriter(1);
out.writeLong(Long.MIN_VALUE);
Assert.assertEquals(Long.toString(Long.MIN_VALUE), out.toString());
}
public void test_14() throws Exception {
SerializeWriter out = new SerializeWriter(1);