If there is no server connection yet, establish one, because the server may send data first.
(tctx)
| 15 | |
| 16 | |
| 17 | def test_open_connection(tctx): |
| 18 | """ |
| 19 | If there is no server connection yet, establish one, |
| 20 | because the server may send data first. |
| 21 | """ |
| 22 | assert Playbook(udp.UDPLayer(tctx, True)) << OpenConnection(tctx.server) |
| 23 | |
| 24 | tctx.server.timestamp_start = 1624544785 |
| 25 | assert Playbook(udp.UDPLayer(tctx, True)) << None |
| 26 | |
| 27 | |
| 28 | def test_open_connection_err(tctx): |
nothing calls this directly
no test coverage detected
searching dependent graphs…