| 20 | using af::event; |
| 21 | |
| 22 | TEST(EventTests, SimpleCreateRelease) { |
| 23 | af_event event; |
| 24 | ASSERT_SUCCESS(af_create_event(&event)); |
| 25 | ASSERT_SUCCESS(af_delete_event(event)); |
| 26 | } |
| 27 | |
| 28 | TEST(EventTests, MarkEnqueueAndBlock) { |
| 29 | af_event event; |
nothing calls this directly
no test coverage detected