Formats the count of test suites.
| 4360 | |
| 4361 | // Formats the count of test suites. |
| 4362 | static std::string FormatTestSuiteCount(int test_suite_count) { |
| 4363 | return FormatCountableNoun(test_suite_count, "test suite", "test suites"); |
| 4364 | } |
| 4365 | |
| 4366 | // Converts a TestPartResult::Type enum to human-friendly string |
| 4367 | // representation. Both kNonFatalFailure and kFatalFailure are translated |
no test coverage detected