| 4236 | } |
| 4237 | |
| 4238 | void PrettyUnitTestResultPrinter::OnEnvironmentsSetUpStart( |
| 4239 | const UnitTest& /*unit_test*/) { |
| 4240 | ColoredPrintf(COLOR_GREEN, "[----------] "); |
| 4241 | printf("Global test environment set-up.\n"); |
| 4242 | fflush(stdout); |
| 4243 | } |
| 4244 | |
| 4245 | void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { |
| 4246 | const std::string counts = |
no test coverage detected