Prints a TestPartResult to an std::string.
| 2845 | |
| 2846 | // Prints a TestPartResult to an std::string. |
| 2847 | static std::string PrintTestPartResultToString( |
| 2848 | const TestPartResult& test_part_result) { |
| 2849 | return (Message() |
| 2850 | << internal::FormatFileLocation(test_part_result.file_name(), |
| 2851 | test_part_result.line_number()) |
| 2852 | << " " << TestPartResultTypeToString(test_part_result.type()) |
| 2853 | << test_part_result.message()).GetString(); |
| 2854 | } |
| 2855 | |
| 2856 | // Prints a TestPartResult. |
| 2857 | static void PrintTestPartResult(const TestPartResult& test_part_result) { |
no test coverage detected