()
| 378 | |
| 379 | #[test] |
| 380 | fn large_handle_encoding() { |
| 381 | let handle = encode_large_handle(42); |
| 382 | assert!(is_large_handle(handle)); |
| 383 | assert_eq!(decode_large_handle(handle), 42); |
| 384 | } |
| 385 | |
| 386 | #[test] |
| 387 | fn basic_alloc_get_free() { |
nothing calls this directly
no test coverage detected