// Boost.Geometry (aka GGL, Generic Geometry Library) test file // // Copyright Barend Gehrels 2007-2009, Geodan, Amsterdam, the Netherlands // Copyright Bruno Lalande 2008, 2009 // Use, modification and distribution is subject to the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include // To be tested: #include #include #include // For geometries: #include #include #include #include template void test_ring(std::string const& wkt, int expected_main_count, int expected_interior_ring_count, int expected_first_interior_count) { typedef bg::model::polygon

the_polygon; typedef typename bg::ring_type::type the_ring; typedef typename bg::interior_return_type::type the_interior; the_polygon poly; bg::read_wkt(wkt, poly); the_ring ext = bg::exterior_ring(poly); the_interior rings = bg::interior_rings(poly); BOOST_CHECK_EQUAL(bg::num_interior_rings(poly), std::size_t(expected_interior_ring_count)); BOOST_CHECK_EQUAL(boost::size(rings), expected_interior_ring_count); BOOST_CHECK_EQUAL(boost::size(ext), expected_main_count); if (boost::size(rings)) { BOOST_CHECK_EQUAL(boost::size(rings.front()), expected_first_interior_count); } } template void test_all() { test_ring

("POLYGON((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))", 5, 1, 5); test_ring

("POLYGON((0 0,0 3,3 3,3 0,0 0),(1 1,2 2,2 1,1 1),(1 1,1 2,2 2,1 1))", 5, 2, 4); test_ring

("POLYGON((0 0,0 3,3 3,3 0,0 0))", 5, 0, 0); } int test_main(int, char* []) { test_all >(); return 0; }