/**
* Test passing a Bound which crosses the antimeredian and intersects the filter area.
*/
@Test
public final void testProcessBoundContainer2() {
Bound compareBound;
polyAreaFilter.process(new BoundContainer(crossingIntersectingBound));
polyAreaFilter.complete();
compareBound = (Bound) entityInspector.getLastEntityContainer().getEntity();
assertTrue(Double.compare(compareBound.getRight(), 20) == 0);
assertTrue(Double.compare(compareBound.getLeft(), -20) == 0);
assertTrue(Double.compare(compareBound.getTop(), 20) == 0);
assertTrue(Double.compare(compareBound.getBottom(), -20) == 0);
assertTrue(compareBound.getOrigin().equals("crossing intersecting"));
}