*/
public void testBBOX() throws IllegalFilterException {
// Test BBOX
AttributeExpressionImpl left = new AttributeExpressionImpl(testSchema, "testGeometry");
BBOX bbox = fac.bbox(left, 0, 0, 10, 10, null);
LOGGER.finer( bbox.toString());
LOGGER.finer( "contains feature: " + bbox.evaluate(testFeature));
assertTrue(bbox.evaluate(testFeature));
bbox = fac.bbox(left, 0, 0, 1, 1, null);
LOGGER.finer( bbox.toString());
LOGGER.finer( "contains feature: " + bbox.evaluate(testFeature));
assertTrue(!bbox.evaluate(testFeature));
bbox = fac.bbox(left, 0, 0, 10, 10, "EPSG:4326");
LOGGER.finer( bbox.toString());
LOGGER.finer( "contains feature: " + bbox.evaluate(testFeature));
assertTrue(bbox.evaluate(testFeature));
bbox = fac.bbox(left, 0, 0, 10, 10, "");
LOGGER.finer( bbox.toString());
LOGGER.finer( "contains feature: " + bbox.evaluate(testFeature));
assertTrue(bbox.evaluate(testFeature));
}