()
| 75 | |
| 76 | #[test] |
| 77 | fn serialize_roundtrip() { |
| 78 | let bm = from_ids(0..10000); |
| 79 | let bytes = serialize(&bm).unwrap(); |
| 80 | let bm2 = deserialize(&bytes).unwrap(); |
| 81 | assert_eq!(bm, bm2); |
| 82 | } |
| 83 | |
| 84 | #[test] |
| 85 | fn empty_bitmap() { |
nothing calls this directly
no test coverage detected