Formats the count of test cases.
| 3793 | |
| 3794 | // Formats the count of test cases. |
| 3795 | static internal::String FormatTestCaseCount(int test_case_count) { |
| 3796 | return FormatCountableNoun(test_case_count, "test case", "test cases"); |
| 3797 | } |
| 3798 | |
| 3799 | // Converts a TestPartResult::Type enum to human-friendly string |
| 3800 | // representation. Both kNonFatalFailure and kFatalFailure are translated |
no test coverage detected