Prints a TestPartResult to an std::string.
| 4390 | |
| 4391 | // Prints a TestPartResult to an std::string. |
| 4392 | static std::string PrintTestPartResultToString( |
| 4393 | const TestPartResult& test_part_result) { |
| 4394 | return (Message() |
| 4395 | << internal::FormatFileLocation(test_part_result.file_name(), |
| 4396 | test_part_result.line_number()) |
| 4397 | << " " << TestPartResultTypeToString(test_part_result.type()) |
| 4398 | << test_part_result.message()).GetString(); |
| 4399 | } |
| 4400 | |
| 4401 | // Prints a TestPartResult. |
| 4402 | static void PrintTestPartResult(const TestPartResult& test_part_result) { |
no test coverage detected