| 4 | { |
| 5 | |
| 6 | TestNode::TestNode(const std::string& name, const NodeConfig& config, |
| 7 | TestNodeConfig test_config) |
| 8 | : TestNode(name, config, std::make_shared<TestNodeConfig>(std::move(test_config))) |
| 9 | {} |
| 10 | |
| 11 | TestNode::TestNode(const std::string& name, const NodeConfig& config, |
| 12 | std::shared_ptr<TestNodeConfig> test_config) |
nothing calls this directly
no test coverage detected