Formats the count of test suites.
| 3093 | |
| 3094 | // Formats the count of test suites. |
| 3095 | static std::string FormatTestSuiteCount(int test_suite_count) { |
| 3096 | return FormatCountableNoun(test_suite_count, "test suite", "test suites"); |
| 3097 | } |
| 3098 | |
| 3099 | // Converts a TestPartResult::Type enum to human-friendly string |
| 3100 | // representation. Both kNonFatalFailure and kFatalFailure are translated |
no test coverage detected