| 20 | #include "context_setup.hpp" |
| 21 | |
| 22 | BOOST_AUTO_TEST_CASE(concept_check) |
| 23 | { |
| 24 | BOOST_CONCEPT_ASSERT((boost::Container<boost::compute::array<int, 3> >)); |
| 25 | // BOOST_CONCEPT_ASSERT((boost::SequenceConcept<boost::compute::array<int, 3> >)); |
| 26 | BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<boost::compute::array<int, 3>::iterator>)); |
| 27 | BOOST_CONCEPT_ASSERT((boost::RandomAccessIterator<boost::compute::array<int, 3>::const_iterator>)); |
| 28 | } |
| 29 | |
| 30 | BOOST_AUTO_TEST_CASE(size) |
| 31 | { |