// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. // Unit tests for hashtable. #include LOG_SETUP("vector_map_test"); #include #include using vespalib::vector_map; using namespace vespalib; namespace { TEST("verify size of underlying storage") { EXPECT_EQUAL(8u, sizeof(vector_map::value_type)); EXPECT_EQUAL(16u, sizeof(vector_map::value_type)); } } // namespace TEST_MAIN() { TEST_RUN_ALL(); }