Message assignment, for assertion streaming support.
| 1881 | |
| 1882 | // Message assignment, for assertion streaming support. |
| 1883 | void AssertHelper::operator=(const Message& message) const { |
| 1884 | UnitTest::GetInstance()-> |
| 1885 | AddTestPartResult(data_->type, data_->file, data_->line, |
| 1886 | AppendUserMessage(data_->message, message), |
| 1887 | UnitTest::GetInstance()->impl() |
| 1888 | ->CurrentOsStackTraceExceptTop(1) |
| 1889 | // Skips the stack frame for this function itself. |
| 1890 | ); // NOLINT |
| 1891 | } |
| 1892 | |
| 1893 | // A copy of all command line arguments. Set by InitGoogleTest(). |
| 1894 | static ::std::vector<std::string> g_argvs; |
nothing calls this directly
no test coverage detected