()
| 306 | |
| 307 | #[test] |
| 308 | fn identical_points() { |
| 309 | let a = Geometry::point(5.0, 5.0); |
| 310 | let b = Geometry::point(5.0, 5.0); |
| 311 | let result = st_intersection(&a, &b); |
| 312 | assert_eq!(result.geometry_type(), "Point"); |
| 313 | } |
| 314 | |
| 315 | #[test] |
| 316 | fn different_points() { |
nothing calls this directly
no test coverage detected