()
| 52 | |
| 53 | |
| 54 | def test_send_udp(): |
| 55 | sock = Mock() |
| 56 | method = get_method('pf') |
| 57 | method.send_udp(sock, None, "127.0.0.1", "22222") |
| 58 | assert sock.mock_calls == [call.sendto("22222", "127.0.0.1")] |
| 59 | |
| 60 | |
| 61 | def test_setup_tcp_listener(): |
nothing calls this directly
no test coverage detected