| 147 | } |
| 148 | |
| 149 | void CoverageFile::doCounts(RecordOutputMgr *outputMgr, RecordKeyVector &hits) |
| 150 | { |
| 151 | ostringstream s; |
| 152 | s << _hitCount; |
| 153 | _finalOutput.append(s.str()); |
| 154 | outputMgr->printRecord(hits.getKey(), _finalOutput); |
| 155 | } |
| 156 | |
| 157 | void CoverageFile::doPerBase(RecordOutputMgr *outputMgr, RecordKeyVector &hits) |
| 158 | { |
nothing calls this directly
no test coverage detected