Gets the text streamed to this object so far as an std::string. Each '\0' character in the buffer is replaced with "\\0".
| 2428 | // Gets the text streamed to this object so far as an std::string. |
| 2429 | // Each '\0' character in the buffer is replaced with "\\0". |
| 2430 | std::string Message::GetString() const { |
| 2431 | return internal::StringStreamToString(ss_.get()); |
| 2432 | } |
| 2433 | |
| 2434 | // AssertionResult constructors. |
| 2435 | // Used in EXPECT_TRUE/FALSE(assertion_result). |
no test coverage detected