Formats the count of tests.
| 3969 | |
| 3970 | // Formats the count of tests. |
| 3971 | static std::string FormatTestCount(int test_count) { |
| 3972 | return FormatCountableNoun(test_count, "test", "tests"); |
| 3973 | } |
| 3974 | |
| 3975 | // Formats the count of test cases. |
| 3976 | static std::string FormatTestCaseCount(int test_case_count) { |
no test coverage detected