| 488 | TestInvokerAsMethod( void (C::*testAsMethod)() ) noexcept : m_testAsMethod( testAsMethod ) {} |
| 489 | |
| 490 | void invoke() const override { |
| 491 | C obj; |
| 492 | (obj.*m_testAsMethod)(); |
| 493 | } |
| 494 | }; |
| 495 | |
| 496 | auto makeTestInvoker( void(*testAsFunction)() ) noexcept -> ITestInvoker*; |
nothing calls this directly
no outgoing calls
no test coverage detected