| 4256 | } |
| 4257 | |
| 4258 | void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) { |
| 4259 | ColoredPrintf(COLOR_GREEN, "[ RUN ] "); |
| 4260 | PrintTestName(test_info.test_case_name(), test_info.name()); |
| 4261 | printf("\n"); |
| 4262 | fflush(stdout); |
| 4263 | } |
| 4264 | |
| 4265 | // Called after an assertion failure. |
| 4266 | void PrettyUnitTestResultPrinter::OnTestPartResult( |
no test coverage detected