test_all_main.cpp 832 B

123456789101112131415161718192021222324252627282930313233
  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. #include "test_capacity.hpp"
  11. #include "test_comparison.hpp"
  12. #include "test_construction.hpp"
  13. #include "test_emplacement.hpp"
  14. #include "test_erasure.hpp"
  15. #include "test_insertion.hpp"
  16. #include "test_iterators.hpp"
  17. #include "test_registration.hpp"
  18. int main()
  19. {
  20. test_algorithm();
  21. test_capacity();
  22. test_comparison();
  23. test_construction();
  24. test_emplacement();
  25. test_erasure();
  26. test_insertion();
  27. test_iterators();
  28. test_registration();
  29. return boost::report_errors();
  30. }