| 94 | using PluginLoaderMock::PluginLoaderMock; |
| 95 | |
| 96 | void load() noexcept override |
| 97 | { |
| 98 | PluginLoader::current_loader = this; |
| 99 | instance_ = make_unique<PluginInstanceMock>(); |
| 100 | emit finished({}); |
| 101 | } |
| 102 | void unload() noexcept override |
| 103 | { |
| 104 | instance_.reset(); |
nothing calls this directly
no outgoing calls
no test coverage detected