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 13 namespace tt = boost::test_tools; 14 15 BOOST_TEST_SPECIALIZED_COLLECTION_COMPARE(std::vector<int>) 16 BOOST_AUTO_TEST_CASE(test_collections_vectors_lex)17 BOOST_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); // lexcographic 23 BOOST_TEST(a < b); // lexcographic 24 BOOST_TEST(a == b); // element-wise 25 BOOST_TEST(a != b); // extended diagnostic 26 BOOST_TEST(c < d); // no extended diagnostic 27 BOOST_TEST(c == d); // no extended diagnostic 28 } 29 //] 30