| 26 | namespace bc = boost::compute; |
| 27 | |
| 28 | BOOST_AUTO_TEST_CASE(size) |
| 29 | { |
| 30 | bc::buffer buffer(context, 100); |
| 31 | BOOST_CHECK_EQUAL(buffer.size(), size_t(100)); |
| 32 | BOOST_VERIFY(buffer.max_size() > buffer.size()); |
| 33 | } |
| 34 | |
| 35 | BOOST_AUTO_TEST_CASE(cl_context) |
| 36 | { |
nothing calls this directly
no test coverage detected