| 206 | }; |
| 207 | |
| 208 | class ExecFunctionWithoutParameters : public ExecFunction |
| 209 | { |
| 210 | public: |
| 211 | void (*testFunction_)(); |
| 212 | |
| 213 | ExecFunctionWithoutParameters(void(*testFunction)()); |
| 214 | virtual ~ExecFunctionWithoutParameters() _destructor_override; |
| 215 | |
| 216 | virtual void exec() _override; |
| 217 | }; |
| 218 | |
| 219 | //////////////////// ExecFunctionTestShell |
| 220 |
nothing calls this directly
no outgoing calls
no test coverage detected