| 89 | return next_; |
| 90 | } |
| 91 | TestPlugin* TestPlugin::removePluginByName(const SimpleString& name) |
| 92 | { |
| 93 | TestPlugin* removed = NULLPTR; |
| 94 | if (next_ && next_->getName() == name) { |
| 95 | removed = next_; |
| 96 | next_ = next_->next_; |
| 97 | } |
| 98 | return removed; |
| 99 | } |
| 100 | |
| 101 | void TestPlugin::disable() |
| 102 | { |
no test coverage detected