| 102 | test_client (const std::string &s) : url(s) {} |
| 103 | |
| 104 | void on_container_start(proton::container &c) override { |
| 105 | proton::connection_options co; |
| 106 | sender = c.open_sender(url, co); |
| 107 | } |
| 108 | |
| 109 | void on_connection_open(proton::connection& c) override { |
| 110 | // Get default session |
nothing calls this directly
no test coverage detected