1 2 3 4 5 6 7
pub fn init_tests() { static INIT: std::sync::OnceLock<()> = std::sync::OnceLock::new(); INIT.get_or_init(|| { crate::init(); }); }