//////////////////////////////////////////////////////////////////////
| 11600 | |
| 11601 | /////////////////////////////////////////////////////////////////////////// |
| 11602 | TestInvokerAsFunction::TestInvokerAsFunction( void(*testAsFunction)() ) noexcept : m_testAsFunction( testAsFunction ) {} |
| 11603 | |
| 11604 | void TestInvokerAsFunction::invoke() const { |
| 11605 | m_testAsFunction(); |
nothing calls this directly
no outgoing calls
no test coverage detected