/// Provides: /// /// - `fn vectors()`: allows for getting a `Vec` of all vectors for exporting. /// - `mod tests`: runs all the test vectors locally. macro_rules! vectors_and_tests { ($($name: ident, $test: expr),*) => { pub async fn vectors() -> Vec { let mut vec = vec![]; $( vec.push($test.test_vector(stringify!($name).into()).await); )* vec } #[cfg(all(test, not(debug_assertions)))] mod tests { use super::*; $( #[tokio::test] async fn $name() { $test.run().await; } )* } }; }