}
private void loadWKTAfterPMChange() throws ParseException {
WKTReader reader = new WKTReader(new GeometryFactory(getPrecisionModel(), 0));
for (int i = 0; i < getTestCaseList().getList().size(); i++) {
Testable testable = (Testable) getTestCaseList().getList().get(i);
String wktA = (String) wktABeforePMChange.get(i);
String wktB = (String) wktBBeforePMChange.get(i);
testable.setGeometry(0, wktA != null ? reader.read(wktA) : null);
testable.setGeometry(1, wktB != null ? reader.read(wktB) : null);
}
}