| 481 | } |
| 482 | |
| 483 | void testStringMap( |
| 484 | std::function<void(std::map<std::string, std::string> const& _return)> cob, |
| 485 | const std::map<std::string, std::string>& thing) override { |
| 486 | std::map<std::string, std::string> res; |
| 487 | _delegate->testStringMap(res, thing); |
| 488 | cob(res); |
| 489 | } |
| 490 | |
| 491 | void testSet(std::function<void(std::set<int32_t> const& _return)> cob, |
| 492 | const std::set<int32_t>& thing) override { |
nothing calls this directly
no test coverage detected