| 23 | #include "context_setup.hpp" |
| 24 | |
| 25 | BOOST_AUTO_TEST_CASE(concept_check) |
| 26 | { |
| 27 | BOOST_CONCEPT_ASSERT((boost::Container<boost::compute::flat_map<int, float> >)); |
| 28 | // BOOST_CONCEPT_ASSERT((boost::SimpleAssociativeContainer<boost::compute::flat_map<int, float> >)); |
| 29 | // BOOST_CONCEPT_ASSERT((boost::UniqueAssociativeContainer<boost::compute::flat_map<int, float> >)); |
| 30 | BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<boost::compute::flat_map<int, float>::iterator>)); |
| 31 | BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<boost::compute::flat_map<int, float>::const_iterator>)); |
| 32 | } |
| 33 | |
| 34 | BOOST_AUTO_TEST_CASE(insert) |
| 35 | { |