1 2 3 4 5 6 7 8 9 10 11 12
#[macro_export] macro_rules! db_matrix_test { ($name:ident, |$setup:ident| $body:block) => { #[test] fn $name() { for backend in crate::common::configured_backends() { let $setup = || crate::common::setup_backend(backend); $body } } }; }