(id: u64, lng: f64, lat: f64)
| 303 | use super::*; |
| 304 | |
| 305 | fn make_entry(id: u64, lng: f64, lat: f64) -> RTreeEntry { |
| 306 | RTreeEntry { |
| 307 | id, |
| 308 | bbox: BoundingBox::from_point(lng, lat), |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | #[test] |
| 313 | fn checkpoint_roundtrip_empty() { |
no outgoing calls