Prints a TestPartResult to an std::string.
| 4288 | |
| 4289 | // Prints a TestPartResult to an std::string. |
| 4290 | static std::string PrintTestPartResultToString( |
| 4291 | const TestPartResult& test_part_result) { |
| 4292 | return (Message() |
| 4293 | << internal::FormatFileLocation(test_part_result.file_name(), |
| 4294 | test_part_result.line_number()) |
| 4295 | << " " << TestPartResultTypeToString(test_part_result.type()) |
| 4296 | << test_part_result.message()).GetString(); |
| 4297 | } |
| 4298 | |
| 4299 | // Prints a TestPartResult. |
| 4300 | static void PrintTestPartResult(const TestPartResult& test_part_result) { |
no test coverage detected