Gets the text streamed to this object so far as an std::string. Each '\0' character in the buffer is replaced with "\\0".
| 944 | // Gets the text streamed to this object so far as an std::string. |
| 945 | // Each '\0' character in the buffer is replaced with "\\0". |
| 946 | std::string Message::GetString() const { |
| 947 | return internal::StringStreamToString(ss_.get()); |
| 948 | } |
| 949 | |
| 950 | // AssertionResult constructors. |
| 951 | // Used in EXPECT_TRUE/FALSE(assertion_result). |
no test coverage detected