public void test_erro_0() throws Exception {
SerializeWriter out = new SerializeWriter();
out.write(true);
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
out.writeTo(byteOut, "UTF-8");
Assert.assertEquals("true", new String(byteOut.toByteArray()));
out.close();
}
}