// ugly workaround since fitlibrary no longer allows this to be
// overridden; we create an inner sequence fixture and pass the
// execution to it, but this one is now a fixture to allow things to be overridden
public void interpretTables(Parse tables) {
Options.reset();
SequenceFixture sf = new SequenceFixture();
sf.listener = listener;
sf.counts = counts;
sf.summary = summary;
sf.setSystemUnderTest(this);
sf.interpretTables(tables);
try {
Log.log("Rolling back");
if (environment != null) {
environment.rollback();
environment.closeConnection();