| 98 | BT::SyncActionTest action; |
| 99 | |
| 100 | TimeoutAndRetry() : timeout_root("deadline", 9), retry("retry", 1000), action("action") |
| 101 | { |
| 102 | timeout_root.setChild(&retry); |
| 103 | retry.setChild(&action); |
| 104 | } |
| 105 | }; |
| 106 | |
| 107 | /****************TESTS START HERE***************************/ |