// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/hash/hash.h" #include <cstdint> #include <string> #include <string_view> #include <vector> #include "base/containers/span.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { TEST(HashTest, DeprecatedHashFromString) { … } TEST(HashTest, DeprecatedHashFromCString) { … } TEST(HashTest, PersistentHashFromSpan) { … } TEST(HashTest, FastHash) { … } } // namespace base