| 162 | } |
| 163 | |
| 164 | void on_transport_error(proton::transport& t) override { |
| 165 | ASSERT_EQUAL(bool(transport_error_count), t.connection().reconnected()); |
| 166 | transport_error_count++; |
| 167 | } |
| 168 | |
| 169 | void on_transport_close(proton::transport& t) override { |
| 170 | ASSERT_THROWS_MSG(proton::error, "No active connection", t.connection().url()); |
nothing calls this directly
no test coverage detected