| 30 | namespace compute = boost::compute; |
| 31 | |
| 32 | BOOST_AUTO_TEST_CASE(value_type) |
| 33 | { |
| 34 | BOOST_STATIC_ASSERT(( |
| 35 | boost::is_same< |
| 36 | boost::compute::zip_iterator< |
| 37 | boost::tuple< |
| 38 | boost::compute::buffer_iterator<float>, |
| 39 | boost::compute::buffer_iterator<int> |
| 40 | > |
| 41 | >::value_type, |
| 42 | boost::tuple<float, int> |
| 43 | >::value |
| 44 | )); |
| 45 | } |
| 46 | |
| 47 | BOOST_AUTO_TEST_CASE(distance) |
| 48 | { |
nothing calls this directly
no test coverage detected