(ptr: *mut u8, len: usize)
| 12 | } |
| 13 | #[quickcheck_macros::quickcheck] |
| 14 | fn check_ffi_load_vec(ptr: *mut u8, len: usize) -> TestResult { |
| 15 | init(); |
| 16 | let result = ffi_load_vec(ptr, len); |
| 17 | TestResult::passed() |
| 18 | } |
| 19 | #[quickcheck_macros::quickcheck] |
| 20 | fn check_ffi_load_cstr(ptr: *const c_char) -> TestResult { |
| 21 | init(); |
nothing calls this directly
no test coverage detected