Formats the count of tests.
| 2485 | |
| 2486 | // Formats the count of tests. |
| 2487 | static internal::String FormatTestCount(int test_count) { |
| 2488 | return FormatCountableNoun(test_count, "test", "tests"); |
| 2489 | } |
| 2490 | |
| 2491 | // Formats the count of test cases. |
| 2492 | static internal::String FormatTestCaseCount(int test_case_count) { |
no test coverage detected