Prints a TestPartResult to an std::string.
| 4002 | |
| 4003 | // Prints a TestPartResult to an std::string. |
| 4004 | static std::string PrintTestPartResultToString( |
| 4005 | const TestPartResult& test_part_result) { |
| 4006 | return (Message() |
| 4007 | << internal::FormatFileLocation(test_part_result.file_name(), |
| 4008 | test_part_result.line_number()) |
| 4009 | << " " << TestPartResultTypeToString(test_part_result.type()) |
| 4010 | << test_part_result.message()).GetString(); |
| 4011 | } |
| 4012 | |
| 4013 | // Prints a TestPartResult. |
| 4014 | static void PrintTestPartResult(const TestPartResult& test_part_result) { |
no test coverage detected