Formats the count of tests.
| 3098 | |
| 3099 | // Formats the count of tests. |
| 3100 | static std::string FormatTestCount(int test_count) { |
| 3101 | return FormatCountableNoun(test_count, "test", "tests"); |
| 3102 | } |
| 3103 | |
| 3104 | // Formats the count of test suites. |
| 3105 | static std::string FormatTestSuiteCount(int test_suite_count) { |
no test coverage detected