public void tally(Counts source) { right += source.right; wrong += source.wrong; ignores += source.ignores; exceptions += source.exceptions; }
protected virtual void mark(Parse row) { // mark summary good/bad without counting beyond here Counts official = counts; counts = new Counts(); Parse cell = row.parts.more; if (official.wrong + official.exceptions > 0) { wrong(cell); } else { right(cell); } counts = official; }