* @param b Geometry Object
* @return a boolean indicating whether the result matched the expectation
*/
public boolean doOperation(Geometry a, Geometry b) {
Boolean expected = (Boolean)expectedResult;
Geometry geom1 = setGeomArg(arg1, a, b);
Geometry geom2 = setGeomArg(arg2, a, b);
Boolean result = Boolean.valueOf( geom1.intersects(geom2) );
return result == expected;
}