1use wolfssl_wolfcrypt::*; 2 3#[test] 4fn test_wolfcrypt_init_and_cleanup() { 5 wolfcrypt_init().expect("Error with wolfcrypt_init()"); 6 wolfcrypt_cleanup().expect("Error with wolfcrypt_cleanup()"); 7}