#![cfg(test)]
#[cfg(not(ffuzzy_tests_without_debug_assertions))]
#[cfg_attr(feature = "unstable", coverage(off))] #[test]
fn test_prerequisites() {
assert!(cfg!(debug_assertions), "\
The tests in this crate require debug assertions to be enabled (by default). \
To test this crate without debug assertions, add rustc flags \"--cfg ffuzzy_tests_without_debug_assertions\".\
");
}