| 417 | } |
| 418 | |
| 419 | void testString(std::function<void(std::string const& _return)> cob, |
| 420 | const std::string& thing) override { |
| 421 | std::string res; |
| 422 | _delegate->testString(res, thing); |
| 423 | cob(res); |
| 424 | } |
| 425 | |
| 426 | void testBool(std::function<void(bool const& _return)> cob, const bool thing) override { |
| 427 | bool res = _delegate->testBool(thing); |
nothing calls this directly
no test coverage detected