| 7 | using ::babylon::ConcurrentVector; |
| 8 | |
| 9 | TEST(concurrent_vector, construct_with_block_size) { |
| 10 | { ConcurrentVector<::std::string> vector; } |
| 11 | { ConcurrentVector<::std::string> vector(128); } |
| 12 | { ConcurrentVector<::std::string, 1024> vector; } |
| 13 | { ConcurrentVector<::std::string, 1024> vector(128); } |
| 14 | } |
| 15 | |
| 16 | TEST(concurrent_vector, movable) { |
| 17 | ConcurrentVector<::std::string> vector; |
nothing calls this directly
no test coverage detected