()
| 187 | |
| 188 | #[test] |
| 189 | fn insert_single() { |
| 190 | let mut idx = make_index(); |
| 191 | idx.insert(vec![1.0, 0.0, 0.0]).unwrap(); |
| 192 | assert_eq!(idx.len(), 1); |
| 193 | assert_eq!(idx.entry_point(), Some(0)); |
| 194 | } |
| 195 | |
| 196 | #[test] |
| 197 | fn insert_many_maintains_invariants() { |
nothing calls this directly
no test coverage detected