diff options
| -rw-r--r-- | tests/construction.rs | 30 | ||||
| -rw-r--r-- | tests/tier1_i2c.rs | 5 | 
2 files changed, 30 insertions, 5 deletions
| diff --git a/tests/construction.rs b/tests/construction.rs new file mode 100644 index 0000000..23520af --- /dev/null +++ b/tests/construction.rs @@ -0,0 +1,30 @@ +extern crate embedded_hal; +extern crate embedded_hal_mock as hal; + +#[macro_use] +#[allow(unused)] +mod common; +use common::{ new_ads1013, destroy_ads1013, new_ads1113, destroy_ads1113, +              new_ads1014, destroy_ads1014, new_ads1114, destroy_ads1114, +              new_ads1015, destroy_ads1015, new_ads1115, destroy_ads1115 +              }; + +macro_rules! impl_tests { +    ($IC:ident, $create:ident, $destroy:ident) => { +        mod $IC { +            use super::*; +            #[test] +            fn can_create() { +                let dev = $create(&[]); +                $destroy(dev); +            } +        } +    } +} + +impl_tests!(ads1013, new_ads1013, destroy_ads1013); +impl_tests!(ads1113, new_ads1113, destroy_ads1113); +impl_tests!(ads1014, new_ads1014, destroy_ads1014); +impl_tests!(ads1114, new_ads1114, destroy_ads1114); +impl_tests!(ads1015, new_ads1015, destroy_ads1015); +impl_tests!(ads1115, new_ads1115, destroy_ads1115); diff --git a/tests/tier1_i2c.rs b/tests/tier1_i2c.rs index 845c919..15e5514 100644 --- a/tests/tier1_i2c.rs +++ b/tests/tier1_i2c.rs @@ -16,11 +16,6 @@ macro_rules! impl_tests {          mod $IC {              use embedded_hal::adc::OneShot;              use super::*; -            #[test] -            fn can_create() { -                let dev = $create(&[]); -                $destroy(dev); -            }              mod would_block {                  use super::*; | 
