| 14 | class MockModule : public aimrt::ModuleBase { |
| 15 | public: |
| 16 | ModuleInfo Info() const override { |
| 17 | ModuleInfo info; |
| 18 | info.name = TESTMODULE; |
| 19 | return info; |
| 20 | } |
| 21 | |
| 22 | bool Initialize(CoreRef core) override { |
| 23 | is_initialized_ = true; |
nothing calls this directly
no outgoing calls
no test coverage detected