rtree_exceptions_lin.cpp 575 B

1234567891011121314151617181920
  1. // Boost.Geometry Index
  2. // Unit Test
  3. // Copyright (c) 2011-2013 Adam Wulkiewicz, Lodz, Poland.
  4. // Use, modification and distribution is subject to the Boost Software License,
  5. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. #include <rtree/exceptions/test_exceptions.hpp>
  8. int test_main(int, char* [])
  9. {
  10. test_rtree_value_exceptions< bgi::linear<4, 2> >();
  11. test_rtree_value_exceptions(bgi::dynamic_linear(4, 2));
  12. test_rtree_elements_exceptions< bgi::linear_throwing<4, 2> >();
  13. return 0;
  14. }