BitTypePeer.BIT_VALUE, new Boolean(false));
List<BitType> bitTypeList = BitTypePeer.doSelect(criteria);
assertTrue("Should have read 1 dataset "
+ "but read " + bitTypeList.size(),
bitTypeList.size() == 1);
BitType bitValue = bitTypeList.get(0);
assertTrue("Primary key of data set should be f1 but is "
+ bitValue.getId(),
"f1".equals(bitValue.getId()));
}