#include "components/autofill/core/browser/ui/region_combobox_model.h"
#include <memory>
#include "base/json/json_writer.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"
#include "components/autofill/core/browser/autofill_test_utils.h"
#include "components/autofill/core/browser/geo/test_region_data_loader.h"
#include "components/autofill/core/browser/test_personal_data_manager.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/libaddressinput/src/cpp/include/libaddressinput/region_data.h"
namespace autofill {
const char kQuebecCode[] = …;
const char kQuebecName[] = …;
const char16_t kQuebecName16[] = …;
const char kOntarioCode[] = …;
const char kOntarioName[] = …;
const char16_t kOntarioName16[] = …;
TEST(RegionComboboxModelTest, QuebecOntarioRegions) { … }
TEST(RegionComboboxModelTest, FailingSource) { … }
}