Gets the text streamed to this object so far as an std::string. Each '\0' character in the buffer is replaced with "\\0".
| 2451 | // Gets the text streamed to this object so far as an std::string. |
| 2452 | // Each '\0' character in the buffer is replaced with "\\0". |
| 2453 | std::string Message::GetString() const { |
| 2454 | return internal::StringStreamToString(ss_.get()); |
| 2455 | } |
| 2456 | |
| 2457 | // AssertionResult constructors. |
| 2458 | // Used in EXPECT_TRUE/FALSE(assertion_result). |
no test coverage detected