| 44 | } |
| 45 | |
| 46 | BT::Tree createSimpleTree() |
| 47 | { |
| 48 | const std::string xml_text = R"( |
| 49 | <root BTCPP_format="4"> |
| 50 | <BehaviorTree> |
| 51 | <Sequence> |
| 52 | <AlwaysSuccess name="ActionA"/> |
| 53 | <AlwaysSuccess name="ActionB"/> |
| 54 | </Sequence> |
| 55 | </BehaviorTree> |
| 56 | </root>)"; |
| 57 | return factory.createTreeFromText(xml_text); |
| 58 | } |
| 59 | }; |
| 60 | |
| 61 | // ============ StdCoutLogger tests ============ |
nothing calls this directly
no test coverage detected