chromium/components/search_engines/search_host_to_urls_map_unittest.cc

// 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 "components/search_engines/search_host_to_urls_map.h"

#include <stddef.h>

#include <memory>

#include "components/search_engines/search_terms_data.h"
#include "components/search_engines/template_url.h"
#include "components/search_engines/template_url_service.h"
#include "testing/gtest/include/gtest/gtest.h"

TemplateURLSet;

// Basic functionality for the SearchHostToURLsMap tests.
class SearchHostToURLsMapTest : public testing::Test {};

void SearchHostToURLsMapTest::SetUp() {}

TEST_F(SearchHostToURLsMapTest, Add) {}

TEST_F(SearchHostToURLsMapTest, Remove) {}

TEST_F(SearchHostToURLsMapTest, GetsBestTemplateURLForKnownHost) {}

TEST_F(SearchHostToURLsMapTest, GetTemplateURLForUnknownHost) {}

TEST_F(SearchHostToURLsMapTest, GetURLsForKnownHost) {}

TEST_F(SearchHostToURLsMapTest, GetURLsForUnknownHost) {}