use std::fmt::Debug; use nozomi::{ error::{InputError, ProcessError}, OverwriteMethod, }; fn has_send_sync() {} fn has_needed() {} /// Test if all Entity int this library has Send and Sync trait implemented /// /// This test is successful if all entity have the Sync and Send trait. /// If the library compile, then this test must pass (has Send and Sync /// traits is checked at compile time). #[test] fn has_enum_sync_send() { has_send_sync::(); has_send_sync::(); has_send_sync::(); } /// Test if all Entity int this library has Send and Sync trait implemented /// /// This test is successful if all entity have Copy, Clone and Debug trait /// If the library compile, then this test must pass #[test] fn has_enum_needed() { has_needed::(); has_needed::(); has_needed::(); }