//////////////////////////////////////////////////////////////////////
| 9974 | |
| 9975 | /////////////////////////////////////////////////////////////////////////// |
| 9976 | TestInvokerAsFunction::TestInvokerAsFunction(void (*testAsFunction)()) noexcept : m_testAsFunction(testAsFunction) { |
| 9977 | } |
| 9978 | |
| 9979 | void TestInvokerAsFunction::invoke() const { |
| 9980 | m_testAsFunction(); |
nothing calls this directly
no outgoing calls
no test coverage detected