| 24 | #include "context_setup.hpp" |
| 25 | |
| 26 | BOOST_AUTO_TEST_CASE(value_type) |
| 27 | { |
| 28 | BOOST_STATIC_ASSERT(( |
| 29 | boost::is_same< |
| 30 | boost::compute::counting_iterator<int>::value_type, |
| 31 | int |
| 32 | >::value |
| 33 | )); |
| 34 | BOOST_STATIC_ASSERT(( |
| 35 | boost::is_same< |
| 36 | boost::compute::counting_iterator<float>::value_type, |
| 37 | float |
| 38 | >::value |
| 39 | )); |
| 40 | } |
| 41 | |
| 42 | BOOST_AUTO_TEST_CASE(distance) |
| 43 | { |
nothing calls this directly
no test coverage detected