summaryrefslogtreecommitdiffstats
path: root/tests/construction.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/construction.rs')
-rw-r--r--tests/construction.rs30
1 files changed, 30 insertions, 0 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);