XMLProcess testable = createTestableProcess();
prepareProcessForFlowControlTest(testable);
// invoke the method being tested
try {
testable.fatalError(EXCEPTION);
fail("fatalError did not forward the error to the next process");
} catch(SAXParseException e) {
}
}