Formats the count of tests.
| 4355 | |
| 4356 | // Formats the count of tests. |
| 4357 | static std::string FormatTestCount(int test_count) { |
| 4358 | return FormatCountableNoun(test_count, "test", "tests"); |
| 4359 | } |
| 4360 | |
| 4361 | // Formats the count of test suites. |
| 4362 | static std::string FormatTestSuiteCount(int test_suite_count) { |
no test coverage detected