hickory_proto/tests/mod.rs
1//! Tests for TCP and UDP stream and client
2
3#![allow(clippy::print_stdout)] // this is a test module
4
5mod tcp;
6mod udp;
7
8pub use self::tcp::tcp_client_stream_test;
9pub use self::tcp::tcp_stream_test;
10pub use self::udp::next_random_socket_test;
11pub use self::udp::udp_client_stream_test;
12pub use self::udp::udp_stream_test;