1 #define BOOST_TEST_MODULE (table_t_iterator_t) 2 #include "boost/test/unit_test.hpp" 12 BOOST_AUTO_TEST_SUITE(table_t_iterator_t)
21 BOOST_TEST(table.
cbegin() == table.
end());
22 BOOST_TEST(table.
begin() == table.
end());
23 BOOST_TEST(table.
begin() == table.
cend());
24 BOOST_TEST(ctable.
begin() == ctable.
end());
25 BOOST_TEST(table.
begin() == table.
end());
26 BOOST_TEST(ctable.
begin() == table.
end());
27 BOOST_TEST(table.
begin() == ctable.
end());
30 BOOST_TEST(table.
cbegin() != table.
end());
31 BOOST_TEST(table.
begin() != table.
end());
32 BOOST_TEST(table.
begin() != table.
cend());
33 BOOST_TEST(ctable.
begin() != ctable.
end());
34 BOOST_TEST(table.
begin() != table.
end());
35 BOOST_TEST(ctable.
begin() != table.
end());
36 BOOST_TEST(table.
begin() != ctable.
end());
38 BOOST_AUTO_TEST_SUITE_END()
bool isSnippetMode(bool m)
std::pair< iterator, bool > emplace(Args &&...args)
BOOST_AUTO_TEST_CASE(iterator_comparisons_1)
const_iterator cbegin() const
shims::map< std::string, extended_value > table_t
const_iterator cend() const