geoSource.init(testProps);
GeoSearchTask task = (GeoSearchTask) geoSource.createTask(testQuery,
null);
task.evaluate(2000);
spec = new RecordFormatSpecification("sutrs", null, "B");
InformationFragment frag = task.getFragment(1, spec);
String result = frag.getOriginalObject().toString();
LOGGER.fine("the result is " + result);
assertTrue(result.equals("Water Supply Watersheds"));
spec = new RecordFormatSpecification("html", null, "S");
InformationFragment[] fragArr = task.getFragment(1, 2, spec);
String result2 = fragArr[1].getOriginalObject().toString();
LOGGER.fine("the result is " + result2);
}