test_algorithm_main.cpp 419 B

12345678910111213141516
  1. /* Copyright 2016 Joaquin M Lopez Munoz.
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * See http://www.boost.org/libs/poly_collection for library home page.
  7. */
  8. #include <boost/core/lightweight_test.hpp>
  9. #include "test_algorithm.hpp"
  10. int main()
  11. {
  12. test_algorithm();
  13. return boost::report_errors();
  14. }