2025-12-12 15:23:45 -05:00
|
|
|
use wolfssl_wolfcrypt::*;
|
2025-11-21 08:48:22 -05:00
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_wolfcrypt_init() {
|
|
|
|
|
wolfcrypt_init().expect("Error with wolfcrypt_init()");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_wolfcrypt_cleanup() {
|
|
|
|
|
wolfcrypt_cleanup().expect("Error with wolfcrypt_cleanup()");
|
|
|
|
|
}
|