Пример #1
0
 /* Added by Rick Mugridge */
 private void interpretTables(FitDocument documents) {
   for (FitTable table : documents.tables()) {
     try {
       Fixture fixture = getLinkedFixtureWithArgs(table);
       fixture.doTable(table);
       counts.tally(table.getCounts());
     } catch (Throwable e) {
       table.exception(e);
       counts.exceptions++;
     }
   }
 }