| 9 | using ::babylon::ConcurrentBoundedQueue; |
| 10 | |
| 11 | TEST(concurrent_bounded_queue, default_constructed_with_capacity_one) { |
| 12 | ConcurrentBoundedQueue<::std::string> queue; |
| 13 | ASSERT_EQ(1, queue.capacity()); |
| 14 | } |
| 15 | |
| 16 | TEST(concurrent_bounded_queue, move_constructable) { |
| 17 | ConcurrentBoundedQueue<::std::string> queue(1024); |
nothing calls this directly
no test coverage detected