}
public void testBboxReproject() {
// see if coordinates gets flipped, urn forces lat/lon interpretation
BBOX bbox = ff.bbox(ff.property("geom"), 10, 15, 20, 25, "urn:x-ogc:def:crs:EPSG:6.11.2:4326");
Filter clone = (Filter) bbox.accept(reprojector, null);
assertNotSame(bbox, clone);
BBOX clonedBbox = (BBOX) clone;
assertEquals(bbox.getPropertyName(), clonedBbox.getPropertyName());
assertEquals(15, clonedBbox.getMinX(), 1e-6);
assertEquals(10, clonedBbox.getMinY(), 1e-6);