| 314 | } |
| 315 | |
| 316 | void test_no_container() { |
| 317 | // An driver with no container should throw, not crash. |
| 318 | connection_driver d; |
| 319 | try { |
| 320 | d.connection().container(); |
| 321 | FAIL("expected error"); |
| 322 | } catch (const proton::error&) {} |
| 323 | } |
| 324 | |
| 325 | void test_spin_interrupt() { |
| 326 | // Check the test framework interrupts a spinning driver pair with nothing to do. |
no test coverage detected