use super::*; use crate::handle_ping_test_suites; #[cfg(any( not(any(feature = "tls", feature = "native-tls")), all(feature = "tls", feature = "native-tls") ))] handle_ping_test_suites!("tcp": Tcp::run({ () })); #[cfg(feature = "tls")] handle_ping_test_suites!("tls": Tls::run({ memberlist_net::tests::tls_stream_layer::().await })); #[cfg(feature = "native-tls")] handle_ping_test_suites!("native_tls": NativeTls::run({ memberlist_net::tests::native_tls_stream_layer::().await }));