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