//////////////////////////////////////////////////////////////////////
| 14031 | |
| 14032 | /////////////////////////////////////////////////////////////////////////// |
| 14033 | TestInvokerAsFunction::TestInvokerAsFunction( void(*testAsFunction)() ) noexcept : m_testAsFunction( testAsFunction ) {} |
| 14034 | |
| 14035 | void TestInvokerAsFunction::invoke() const { |
| 14036 | m_testAsFunction(); |
nothing calls this directly
no outgoing calls
no test coverage detected