| 70 | }; |
| 71 | |
| 72 | TEST(Factory, VirtualInterface_Issue_945) |
| 73 | { |
| 74 | LinearMotor motor; |
| 75 | BT::BehaviorTreeFactory factory; |
| 76 | factory.registerNodeType<PathFollow>("PathFollow", std::ref(motor)); |
| 77 | |
| 78 | auto tree = factory.createTreeFromText(xml_text); |
| 79 | tree.tickWhileRunning(); |
| 80 | } |
nothing calls this directly
no test coverage detected