Formats the count of test cases.
| 3974 | |
| 3975 | // Formats the count of test cases. |
| 3976 | static std::string FormatTestCaseCount(int test_case_count) { |
| 3977 | return FormatCountableNoun(test_case_count, "test case", "test cases"); |
| 3978 | } |
| 3979 | |
| 3980 | // Converts a TestPartResult::Type enum to human-friendly string |
| 3981 | // representation. Both kNonFatalFailure and kFatalFailure are translated |
no test coverage detected