mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-28 23:39:54 +01:00
12 lines
231 B
Rust
12 lines
231 B
Rust
use wolfssl_wolfcrypt::*;
|
|
|
|
#[test]
|
|
fn test_wolfcrypt_init() {
|
|
wolfcrypt_init().expect("Error with wolfcrypt_init()");
|
|
}
|
|
|
|
#[test]
|
|
fn test_wolfcrypt_cleanup() {
|
|
wolfcrypt_cleanup().expect("Error with wolfcrypt_cleanup()");
|
|
}
|