* @param a Geometry object
* @param b Geometry object
* @return a boolean indicating whether the result matched the expectation
*/
public boolean doOperation(Geometry a, Geometry b) {
Geometry geom1 = setGeomArg(arg1, a, b);
Geometry geom2 = setGeomArg(arg2, a, b);
TransfiniteSet result = geom1.symmetricDifference(geom2);
actualResult = result;
return compareTransfiniteSetResult(result);
}