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