public void testWriteBooleanIntCharFalseValue() throws Exception
{
// prepare
fillTables();
BintBcharType bc
= BintBcharTypePeer.retrieveByPK(new StringKey("t1"));
bc.setBintValue(false);
bc.setBcharValue(false);
bc.setBintObjectValue(Boolean.FALSE);
bc.setBcharObjectValue(Boolean.FALSE);
// execute
bc.save();
// verify
bc = BintBcharTypePeer.retrieveByPK(new StringKey("t1"));
assertEquals(false, bc.getBintValue());
assertEquals(false, bc.getBcharValue());
assertEquals(Boolean.FALSE, bc.getBintObjectValue());
assertEquals(Boolean.FALSE, bc.getBcharObjectValue());
}