Formats the count of tests.
| 3788 | |
| 3789 | // Formats the count of tests. |
| 3790 | static internal::String FormatTestCount(int test_count) { |
| 3791 | return FormatCountableNoun(test_count, "test", "tests"); |
| 3792 | } |
| 3793 | |
| 3794 | // Formats the count of test cases. |
| 3795 | static internal::String FormatTestCaseCount(int test_case_count) { |
no test coverage detected