From 29b16f16970afab0106f15828c6ee0260e295932 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 5 Sep 2016 14:58:01 +0200 Subject: [PATCH] Add missing test --- doc/container.qbk | 2 +- proj/vc7ide/node_handle_test.vcproj | 135 ++++++++++++++++++++++++++++ test/node_handle_test.cpp | 18 ++++ 3 files changed, 154 insertions(+), 1 deletion(-) create mode 100644 proj/vc7ide/node_handle_test.vcproj create mode 100644 test/node_handle_test.cpp diff --git a/doc/container.qbk b/doc/container.qbk index f7ff43f..dd85891 100644 --- a/doc/container.qbk +++ b/doc/container.qbk @@ -1233,7 +1233,7 @@ use [*Boost.Container]? There are several reasons for that: * Revised noexcept expressions of default and move constructors in all containers. * Implemented C++17's `insert_or_assign`/`try_emplace` for [classref boost::container::map map] and [classref boost::container::flat_map flat_map]. * Implemented C++17's [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0083r3.pdf ['Splicing Maps and Sets (Revision 5)]] - Splicing Maps and Sets (Revision 5) for [classref boost::container::map map], [classref boost::container::multimap multimap], + for [classref boost::container::map map], [classref boost::container::multimap multimap], [classref boost::container::set set], [classref boost::container::multiset multiset]. * Implemented C++17's [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0084r2.pdf ['P0084R2 Emplace Return Type]] in `deque`, `vector`, `stable_vector`, `small_vector`, `static_vector`, `list` and `slist`. diff --git a/proj/vc7ide/node_handle_test.vcproj b/proj/vc7ide/node_handle_test.vcproj new file mode 100644 index 0000000..48d4f50 --- /dev/null +++ b/proj/vc7ide/node_handle_test.vcproj @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/node_handle_test.cpp b/test/node_handle_test.cpp new file mode 100644 index 0000000..c516913 --- /dev/null +++ b/test/node_handle_test.cpp @@ -0,0 +1,18 @@ +////////////////////////////////////////////////////////////////////////////// +// +// (C) Copyright Ion Gaztanaga 2016-2016. Distributed under 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) +// +// See http://www.boost.org/libs/container for documentation. +// +////////////////////////////////////////////////////////////////////////////// +#include +#include + +using namespace ::boost::container; + +int main () +{ + return ::boost::report_errors(); +}