]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/test/doc/examples/boost_test_container_lex_default.run-fail.cpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / test / doc / examples / boost_test_container_lex_default.run-fail.cpp
CommitLineData
7c673cae
FG
1// (C) Copyright Raffi Enficiaud 2015.
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/test for the library home page.
7
8//[example_code
9#define BOOST_TEST_MODULE boost_test_container_lex_default
10#include <boost/test/included/unit_test.hpp>
11#include <vector>
12
13namespace tt = boost::test_tools;
14
15BOOST_TEST_SPECIALIZED_COLLECTION_COMPARE(std::vector<int>)
16
17BOOST_AUTO_TEST_CASE( test_collections_vectors_lex )
18{
19 std::vector<int> a{1,2,3}, b{1,2,2};
20 std::vector<long int> c{1,2,3,5}, d{1,2,3,4};
21
22 BOOST_TEST(a < a); // extended diagnostic
23 BOOST_TEST(a < b); // extended diagnostic
24 BOOST_TEST(c < d); // no extended diagnostic
25}
26//]