chromium/components/autofill/core/browser/geo/country_names_unittest.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <string>
#include <utility>

#include "base/strings/utf_string_conversions.h"
#include "components/autofill/core/browser/geo/country_names.h"
#include "testing/gtest/include/gtest/gtest.h"

ASCIIToUTF16;

namespace autofill {
namespace {

class TestCountryNames : public CountryNames {};

}  // namespace

// Test mapping of localized country names to country codes.
TEST(CountryNamesTest, GetCountryCode_BasicMapping) {}

TEST(CountryNamesTest, GetCountryCode_CaseInsensitiveMapping) {}

TEST(CountryNamesTest, GetCountryCode_CodesMapToThemselves) {}

TEST(CountryNamesTest, GetCountryCode_BasicSynonyms) {}

TEST(CountryNamesTest, GetCountryCode_OtherLocales) {}

TEST(CountryNamesTest, GetCountryCode_EnUsFallback) {}

TEST(CountryNamesTest, GetCountryCodeForLocalizedCountryName) {}

TEST(CountryNamesTest, GetCachedCountryCodeForLocalizedCountryName) {}

// Test mapping of an empty country name to an country code.
TEST(CountryNamesTest, EmptyCountryNameHasEmptyCountryCode) {}

}  // namespace autofill