Prints a TestPartResult to an std::string.
| 3126 | |
| 3127 | // Prints a TestPartResult to an std::string. |
| 3128 | static std::string PrintTestPartResultToString( |
| 3129 | const TestPartResult& test_part_result) { |
| 3130 | return (Message() << internal::FormatFileLocation( |
| 3131 | test_part_result.file_name(), |
| 3132 | test_part_result.line_number()) |
| 3133 | << " " |
| 3134 | << TestPartResultTypeToString(test_part_result.type()) |
| 3135 | << test_part_result.message()) |
| 3136 | .GetString(); |
| 3137 | } |
| 3138 | |
| 3139 | // Prints a TestPartResult. |
| 3140 | static void PrintTestPartResult(const TestPartResult& test_part_result) { |
no test coverage detected