()
| 45 | |
| 46 | |
| 47 | def test_send_udp(): |
| 48 | sock = Mock() |
| 49 | method = get_method('nat') |
| 50 | method.send_udp(sock, None, "127.0.0.1", "22222") |
| 51 | assert sock.mock_calls == [call.sendto("22222", "127.0.0.1")] |
| 52 | |
| 53 | |
| 54 | def test_setup_tcp_listener(): |
nothing calls this directly
no test coverage detected