| 21 | |
| 22 | struct MockProcessor : public GraphProcessor { |
| 23 | virtual int config(const Any& raw, Any& option) const noexcept override { |
| 24 | option = *raw.get<::std::string>() + option_append; |
| 25 | config_called = true; |
| 26 | return config_return; |
| 27 | } |
| 28 | |
| 29 | virtual int setup() noexcept override { |
| 30 | option_effect = *option<::std::string>(); |
nothing calls this directly
no outgoing calls
no test coverage detected