Formats the count of tests.
| 4255 | |
| 4256 | // Formats the count of tests. |
| 4257 | static std::string FormatTestCount(int test_count) { |
| 4258 | return FormatCountableNoun(test_count, "test", "tests"); |
| 4259 | } |
| 4260 | |
| 4261 | // Formats the count of test cases. |
| 4262 | static std::string FormatTestCaseCount(int test_case_count) { |
no test coverage detected