| 29 | namespace compute = boost::compute; |
| 30 | |
| 31 | BOOST_AUTO_TEST_CASE(concept_check) |
| 32 | { |
| 33 | BOOST_CONCEPT_ASSERT((boost::Container<bc::vector<int> >)); |
| 34 | //BOOST_CONCEPT_ASSERT((boost::SequenceConcept<bc::vector<int> >)); |
| 35 | BOOST_CONCEPT_ASSERT((boost::ReversibleContainer<bc::vector<int> >)); |
| 36 | BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<bc::vector<int>::iterator>)); |
| 37 | BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<bc::vector<int>::const_iterator>)); |
| 38 | } |
| 39 | |
| 40 | BOOST_AUTO_TEST_CASE(size) |
| 41 | { |
nothing calls this directly
no test coverage detected