mirror of
https://github.com/wolfSSL/wolfssl
synced 2026-05-24 10:18:22 +00:00
7 lines
202 B
Rust
7 lines
202 B
Rust
use wolfssl_wolfcrypt::*;
|
|
|
|
#[test]
|
|
fn test_wolfcrypt_init_and_cleanup() {
|
|
wolfcrypt_init().expect("Error with wolfcrypt_init()");
|
|
wolfcrypt_cleanup().expect("Error with wolfcrypt_cleanup()");
|
|
}
|