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