Automatically reports coverage results.
| 37 | |
| 38 | // Automatically reports coverage results. |
| 39 | ~TestRunner() { |
| 40 | if (coverage_index_) { |
| 41 | CoverageReportingEnvironment reporter(*coverage_index_); |
| 42 | reporter.TearDown(); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | // Evaluates the checked expression in the test case, performs the |
| 47 | // assertions against the expected result. |