| 87 | } |
| 88 | |
| 89 | void testing_stub::operator()() noexcept { |
| 90 | if (static_cast<bool>(m_state)) { |
| 91 | m_state->on_execute(); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | value_testing_stub& value_testing_stub::operator=(value_testing_stub&& rhs) noexcept { |
| 96 | testing_stub::operator=(std::move(rhs)); |
nothing calls this directly
no test coverage detected