| 52 | } |
| 53 | |
| 54 | void report() |
| 55 | { |
| 56 | cerr << "impedance report: " << endl; |
| 57 | for (auto pair : occurances_in_failed_query) { |
| 58 | cerr << " " << pretty_type(pair.first) << ": " << |
| 59 | pair.second << "/" << occurances_in_ok_query[pair.first] |
| 60 | << " (bad/ok)"; |
| 61 | if (!matched(pair.first)) |
| 62 | cerr << " -> BLACKLISTED"; |
| 63 | cerr << endl; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | void report(std::ostream &out) |
| 68 | { |
no test coverage detected