| 20 | #include "opencl_version_check.hpp" |
| 21 | |
| 22 | BOOST_AUTO_TEST_CASE(null_device) |
| 23 | { |
| 24 | boost::compute::device null; |
| 25 | BOOST_CHECK(null.id() == cl_device_id()); |
| 26 | BOOST_CHECK(null.get() == cl_device_id()); |
| 27 | } |
| 28 | |
| 29 | BOOST_AUTO_TEST_CASE(default_device_doctest) |
| 30 | { |
nothing calls this directly
no test coverage detected