| 419 | } |
| 420 | |
| 421 | static void db_create_tree(Conductor &c) |
| 422 | { |
| 423 | |
| 424 | auto ex = c.addNewExecution("Created as in DB"); |
| 425 | auto &tree = ex->tree(); |
| 426 | |
| 427 | tree.db_initialize(100); |
| 428 | |
| 429 | tree.db_createRoot(NodeID{0}); |
| 430 | |
| 431 | tree.db_addChild(NodeID{1}, NodeID{0}, 0, tree::NodeStatus::BRANCH, "a"); |
| 432 | tree.db_addChild(NodeID{2}, NodeID{0}, 1, tree::NodeStatus::BRANCH, "b"); |
| 433 | } |
| 434 | |
| 435 | static void save_search(Conductor &c) |
| 436 | { |
nothing calls this directly
no test coverage detected