()
| 297 | |
| 298 | #[test] |
| 299 | fn point_roundtrip() { |
| 300 | let geom = Geometry::point(-73.9857, 40.7484); |
| 301 | let wkb = geometry_to_wkb(&geom); |
| 302 | let decoded = geometry_from_wkb(&wkb).unwrap(); |
| 303 | assert_eq!(geom, decoded); |
| 304 | } |
| 305 | |
| 306 | #[test] |
| 307 | fn linestring_roundtrip() { |
nothing calls this directly
no test coverage detected