mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-11 11:52:11 +00:00
32 lines
868 B
C++
32 lines
868 B
C++
// Boost.Geometry (aka GGL, Generic Geometry Library)
|
|
//
|
|
// Boost.Index - unit tests
|
|
//
|
|
// Copyright 2011 Adam Wulkiewicz.
|
|
// 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)
|
|
|
|
#define BOOST_TEST_MODULE test_module_boost_geometry_index
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <tests/translators.hpp>
|
|
#include <tests/rtree_native.hpp>
|
|
#include <tests/rtree_filters.hpp>
|
|
|
|
BOOST_AUTO_TEST_CASE( test_main )
|
|
{
|
|
std::cout << "test\n";
|
|
|
|
tests_rtree_native_hpp< boost::geometry::index::linear<32, 8> >();
|
|
tests_rtree_native_hpp< boost::geometry::index::quadratic<32, 8> >();
|
|
tests_rtree_native_hpp< boost::geometry::index::rstar<32, 8> >();
|
|
|
|
tests_rtree_filters_hpp();
|
|
|
|
#ifdef _MSC_VER
|
|
std::cin.get();
|
|
#endif
|
|
|
|
}
|