public void testReadBoolean() {
Buffer buf = new Buffer();
OutputStream oStream = new OutputStream(buf);
oStream.write_boolean(true);
InputStream iStream = oStream.create_input_stream();
CorbaObjectReader reader = new CorbaObjectReader(iStream);
Boolean boolValue = reader.readBoolean();
assertTrue(boolValue.booleanValue() == true);
}