| 1246 | } |
| 1247 | |
| 1248 | void testMoveConstructDeviceNull(void) |
| 1249 | { |
| 1250 | #ifdef TEST_RVALUE_REFERENCES |
| 1251 | cl::Device empty; |
| 1252 | cl::Device trg(std::move(empty)); |
| 1253 | TEST_ASSERT_NULL(trg()); |
| 1254 | TEST_ASSERT_NULL(empty()); |
| 1255 | #endif |
| 1256 | } |
| 1257 | |
| 1258 | void testDestroyDevice1_1(void) |
| 1259 | { |
nothing calls this directly
no outgoing calls
no test coverage detected