1 use super::*; 2 3 #[test] ensure_client_settings_is_send()4 fn ensure_client_settings_is_send() { 5 let client = ClientSettings::default(); 6 7 ensure_send(client); 8 } 9 ensure_send<T: Send>(_: T)10 fn ensure_send<T: Send>(_: T) {} 11 12 //TODO: add more client tests 13