BitType bitType = BitTypePeer.doSelectSingleRecord(
new Criteria().where(BitTypePeer.ID, "t1"));
assertTrue("BIT should be true but is: "
+ bitType.getBitValue(), bitType.getBitValue());
bitType = BitTypePeer.retrieveByPK(new StringKey("f1"));
assertFalse("BIT should be false but is: "
+ bitType.getBitValue(), bitType.getBitValue());
}