Gets the text streamed to this object so far as an std::string. Each '\0' character in the buffer is replaced with "\\0".
| 2474 | // Gets the text streamed to this object so far as an std::string. |
| 2475 | // Each '\0' character in the buffer is replaced with "\\0". |
| 2476 | std::string Message::GetString() const { |
| 2477 | return internal::StringStreamToString(ss_.get()); |
| 2478 | } |
| 2479 | |
| 2480 | // AssertionResult constructors. |
| 2481 | // Used in EXPECT_TRUE/FALSE(assertion_result). |
no test coverage detected