Formats the count of test cases.
| 4260 | |
| 4261 | // Formats the count of test cases. |
| 4262 | static std::string FormatTestCaseCount(int test_case_count) { |
| 4263 | return FormatCountableNoun(test_case_count, "test case", "test cases"); |
| 4264 | } |
| 4265 | |
| 4266 | // Converts a TestPartResult::Type enum to human-friendly string |
| 4267 | // representation. Both kNonFatalFailure and kFatalFailure are translated |
no test coverage detected