Message assignment, for assertion streaming support.
| 1653 | |
| 1654 | // Message assignment, for assertion streaming support. |
| 1655 | void AssertHelper::operator=(const Message& message) const { |
| 1656 | UnitTest::GetInstance()-> |
| 1657 | AddTestPartResult(data_->type, data_->file, data_->line, |
| 1658 | AppendUserMessage(data_->message, message), |
| 1659 | UnitTest::GetInstance()->impl() |
| 1660 | ->CurrentOsStackTraceExceptTop(1) |
| 1661 | // Skips the stack frame for this function itself. |
| 1662 | ); // NOLINT |
| 1663 | } |
| 1664 | |
| 1665 | // Mutex for linked pointers. |
| 1666 | GTEST_DEFINE_STATIC_MUTEX_(g_linked_ptr_mutex); |
nothing calls this directly
no test coverage detected