Prints a TestPartResult to a String.
| 3819 | |
| 3820 | // Prints a TestPartResult to a String. |
| 3821 | static internal::String PrintTestPartResultToString( |
| 3822 | const TestPartResult& test_part_result) { |
| 3823 | return (Message() |
| 3824 | << internal::FormatFileLocation(test_part_result.file_name(), |
| 3825 | test_part_result.line_number()) |
| 3826 | << " " << TestPartResultTypeToString(test_part_result.type()) |
| 3827 | << test_part_result.message()).GetString(); |
| 3828 | } |
| 3829 | |
| 3830 | // Prints a TestPartResult. |
| 3831 | static void PrintTestPartResult(const TestPartResult& test_part_result) { |
no test coverage detected