| 7 | #include <thread> |
| 8 | |
| 9 | UNIT_TEST(ThreadSafeQueue_ThreadSafeQueue) |
| 10 | { |
| 11 | threads::ThreadSafeQueue<size_t> queue; |
| 12 | |
| 13 | TEST(queue.Empty(), ()); |
| 14 | TEST_EQUAL(queue.Size(), 0, ()); |
| 15 | } |
| 16 | |
| 17 | UNIT_TEST(ThreadSafeQueue_Push) |
| 18 | { |
nothing calls this directly
no test coverage detected