()
| 858 | |
| 859 | #[test] |
| 860 | fn test_new() { |
| 861 | let _context = crate::quick_init().unwrap(); |
| 862 | let val = 0u64; |
| 863 | let mut buffer = UnifiedBuffer::new(&val, 5).unwrap(); |
| 864 | buffer[0] = 1; |
| 865 | } |
| 866 | |
| 867 | #[test] |
| 868 | fn test_from_slice() { |
nothing calls this directly
no test coverage detected