xref: /libCEED/rust/libceed-sys/tests/register.rs (revision f6af633f48f40461e0ac4411cacdc7e4180f53e5)
1 /// Basic smoke test to confirm that the library is callable.
2 #[test]
3 fn test_import() {
4     use libceed_sys::bind_ceed;
5     unsafe {
6         bind_ceed::CeedRegisterAll();
7     }
8 }
9