Formats the count of tests.
| 3088 | |
| 3089 | // Formats the count of tests. |
| 3090 | static std::string FormatTestCount(int test_count) { |
| 3091 | return FormatCountableNoun(test_count, "test", "tests"); |
| 3092 | } |
| 3093 | |
| 3094 | // Formats the count of test suites. |
| 3095 | static std::string FormatTestSuiteCount(int test_suite_count) { |
no test coverage detected