Message assignment, for assertion streaming support.
| 1853 | |
| 1854 | // Message assignment, for assertion streaming support. |
| 1855 | void AssertHelper::operator=(const Message& message) const { |
| 1856 | UnitTest::GetInstance()-> |
| 1857 | AddTestPartResult(data_->type, data_->file, data_->line, |
| 1858 | AppendUserMessage(data_->message, message), |
| 1859 | UnitTest::GetInstance()->impl() |
| 1860 | ->CurrentOsStackTraceExceptTop(1) |
| 1861 | // Skips the stack frame for this function itself. |
| 1862 | ); // NOLINT |
| 1863 | } |
| 1864 | |
| 1865 | // Mutex for linked pointers. |
| 1866 | #if defined(__GNUC__) |
nothing calls this directly
no test coverage detected