()
| 314 | |
| 315 | #[test] |
| 316 | fn different_points() { |
| 317 | let a = Geometry::point(0.0, 0.0); |
| 318 | let b = Geometry::point(1.0, 1.0); |
| 319 | let result = st_intersection(&a, &b); |
| 320 | if let Geometry::GeometryCollection { geometries } = &result { |
| 321 | assert!(geometries.is_empty()); |
| 322 | } |
| 323 | } |
| 324 | |
| 325 | #[test] |
| 326 | fn linestring_clipped_to_polygon() { |
nothing calls this directly
no test coverage detected