xref: /libCEED/rust/libceed-sys/tests/register.rs (revision 9c774eddf8c0b4f5416196d32c5355c9591a7190)
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