// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/cert/known_roots.h" #include <string.h> #include <algorithm> #include "net/base/hash_value.h" #include "net/cert/root_cert_list_generated.h" #include "testing/gtest/include/gtest/gtest.h" namespace net { namespace { TEST(KnownRootsTest, RootCertDataIsSorted) { … } TEST(KnownRootsTest, UnknownHashReturnsNotFound) { … } TEST(KnownRootsTest, FindsKnownRoot) { … } } // namespace } // namespace net