| 30 | namespace compute = boost::compute; |
| 31 | |
| 32 | BOOST_AUTO_TEST_CASE(get_context) |
| 33 | { |
| 34 | BOOST_VERIFY(queue.get_context() == context); |
| 35 | BOOST_VERIFY(queue.get_info<CL_QUEUE_CONTEXT>() == context.get()); |
| 36 | } |
| 37 | |
| 38 | BOOST_AUTO_TEST_CASE(get_device) |
| 39 | { |
nothing calls this directly
no test coverage detected