trust_dns_proto/tests/
mod.rs

1//! Tests for TCP and UDP stream and client
2
3mod tcp;
4mod udp;
5
6pub use self::tcp::tcp_client_stream_test;
7pub use self::tcp::tcp_stream_test;
8pub use self::udp::next_random_socket_test;
9pub use self::udp::udp_client_stream_test;
10pub use self::udp::udp_stream_test;