| 80 | } |
| 81 | |
| 82 | void on_message(proton::delivery &d, proton::message &msg) override { |
| 83 | ASSERT_EQUAL(test_tag, d.tag()); |
| 84 | d.receiver().close(); |
| 85 | d.connection().close(); |
| 86 | listener.stop(); |
| 87 | } |
| 88 | }; |
| 89 | |
| 90 | class test_client : public proton::messaging_handler { |
nothing calls this directly
no test coverage detected