boost_test_container_lex_default.run-fail.cpp 903 B

1234567891011121314151617181920212223242526272829
  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. // See http://www.boost.org/libs/test for the library home page.
  6. //[example_code
  7. #define BOOST_TEST_MODULE boost_test_container_lex_default
  8. #include <boost/test/included/unit_test.hpp>
  9. #include <vector>
  10. namespace tt = boost::test_tools;
  11. BOOST_TEST_SPECIALIZED_COLLECTION_COMPARE(std::vector<int>)
  12. BOOST_AUTO_TEST_CASE( test_collections_vectors_lex )
  13. {
  14. std::vector<int> a{1,2,3}, b{1,2,2};
  15. std::vector<long int> c{1,2,3,5}, d{1,2,3,4};
  16. BOOST_TEST(a < a); // lexcographic
  17. BOOST_TEST(a < b); // lexcographic
  18. BOOST_TEST(a == b); // element-wise
  19. BOOST_TEST(a != b); // extended diagnostic
  20. BOOST_TEST(c < d); // no extended diagnostic
  21. BOOST_TEST(c == d); // no extended diagnostic
  22. }
  23. //]