//////////////////////////////////////////////////////////////////////
| 10062 | |
| 10063 | /////////////////////////////////////////////////////////////////////////// |
| 10064 | TestInvokerAsFunction::TestInvokerAsFunction( void(*testAsFunction)() ) noexcept : m_testAsFunction( testAsFunction ) {} |
| 10065 | |
| 10066 | void TestInvokerAsFunction::invoke() const { |
| 10067 | m_testAsFunction(); |
nothing calls this directly
no outgoing calls
no test coverage detected