(tctx)
| 26 | |
| 27 | |
| 28 | def test_open_connection_err(tctx): |
| 29 | f = Placeholder(UDPFlow) |
| 30 | assert ( |
| 31 | Playbook(udp.UDPLayer(tctx)) |
| 32 | << udp.UdpStartHook(f) |
| 33 | >> reply() |
| 34 | << OpenConnection(tctx.server) |
| 35 | >> reply("Connect call failed") |
| 36 | << udp.UdpErrorHook(f) |
| 37 | >> reply() |
| 38 | << CloseConnection(tctx.client) |
| 39 | ) |
| 40 | |
| 41 | |
| 42 | def test_simple(tctx): |
nothing calls this directly
no test coverage detected
searching dependent graphs…