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

// Copyright 2020 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/autofill/core/browser/geo/alternative_state_name_map.h"
#include "base/strings/utf_string_conversions.h"
#include "components/autofill/core/browser/geo/alternative_state_name_map_test_utils.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace autofill {
namespace test {

// Tests that map is not empty when an entry has been added to it.
TEST(AlternativeStateNameMapTest, IsEntryAddedToMap) {}

// Tests that the state canonical name is present when an entry is added to
// the map.
TEST(AlternativeStateNameMapTest, StateCanonicalString) {}

// Tests that the separate entries are created in the map for the different
// country codes.
TEST(AlternativeStateNameMapTest, SeparateEntryForDifferentCounties) {}

// Tests that |AlternativeStateNameMap::NormalizeStateName()| removes "-", " "
// and "." from the text.
TEST(AlternativeStateNameMapTest, StripText) {}

// Tests that the correct entries are returned when the maps in
// AlternativeStateNameMap are queried.
TEST(AlternativeStateNameMapTest, GetEntry) {}

}  // namespace test
}  // namespace autofill