()
| 311 | |
| 312 | #[test] |
| 313 | fn checkpoint_roundtrip_empty() { |
| 314 | let tree = RTree::new(); |
| 315 | let bytes = tree.checkpoint_to_bytes(None).unwrap(); |
| 316 | let restored = RTree::from_checkpoint(&bytes, None).unwrap(); |
| 317 | assert_eq!(restored.len(), 0); |
| 318 | } |
| 319 | |
| 320 | #[test] |
| 321 | fn checkpoint_roundtrip_entries() { |
nothing calls this directly
no test coverage detected