* test boolean values
* @throws Exception if the test fails
*/
public void testBooleanValues() throws Exception
{
BooleanCheck bc = BooleanCheckPeer.retrieveByPK(new StringKey("t1"));
assertTrue("BOOLEANINT should be true but is: "
+ bc.getBintValue(), bc.getBintValue());
assertTrue("BOOLEANCHAR should be true but is: "
+ bc.getBcharValue(), bc.getBcharValue());
bc = BooleanCheckPeer.retrieveByPK(new StringKey("f1"));
assertFalse("BOOLEANINT should be false but is: "
+ bc.getBintValue(), bc.getBintValue());
assertFalse("BOOLEANCHAR should be false but is: "
+ bc.getBcharValue(), bc.getBcharValue());
}