/** * SPDX-License-Identifier: GPL-2.0-or-later * * This file is part of osm2pgsql (https://osm2pgsql.org/). * * Copyright (C) 2006-2025 by the osm2pgsql developer community. * For a full list of authors see the git log. */ #include #include "geom-from-osm.hpp" #include "geom-functions.hpp" #include "geom-output.hpp" #include "geom.hpp" TEST_CASE("null geometry", "[NoDB]") { geom::geometry_t const geom{}; REQUIRE(dimension(geom) == 0); REQUIRE(num_geometries(geom) == 0); REQUIRE(area(geom) == 0.0); REQUIRE(length(geom) == Approx(0.0)); REQUIRE(geometry_type(geom) == "NULL"); REQUIRE(centroid(geom).is_null()); REQUIRE(geometry_n(geom, 1).is_null()); REQUIRE(reverse(geom).is_null()); }