| 10 | using ::babylon::ConcurrentTransientHashSet; |
| 11 | |
| 12 | TEST(fixed_swiss_table, default_constructible) { |
| 13 | ConcurrentFixedSwissTable<::std::string> table; |
| 14 | ASSERT_LT(0, table.bucket_count()); |
| 15 | ASSERT_EQ(0, table.size()); |
| 16 | ASSERT_TRUE(table.empty()); |
| 17 | } |
| 18 | |
| 19 | TEST(fixed_swiss_table, default_constructed_table_full_and_also_empty) { |
| 20 | ConcurrentFixedSwissTable<::std::string> table; |
nothing calls this directly
no test coverage detected