Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Unified Diff: trunk/src/components/autofill/core/browser/autofill_country_unittest.cc

Issue 388613002: Revert 282408 "Use upstream libaddressinput in Chrome." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: trunk/src/components/autofill/core/browser/autofill_country_unittest.cc
===================================================================
--- trunk/src/components/autofill/core/browser/autofill_country_unittest.cc (revision 282425)
+++ trunk/src/components/autofill/core/browser/autofill_country_unittest.cc (working copy)
@@ -89,20 +89,4 @@
EXPECT_EQ("US", AutofillCountry::GetCountryCode(ASCIIToUTF16("USA"), "es"));
}
-// Test mapping of empty country name to country code.
-TEST(AutofillCountryTest, EmptyCountryNameHasEmptyCountryCode) {
- EXPECT_TRUE(AutofillCountry::GetCountryCode(base::string16(), "en").empty());
-}
-
-// Test mapping all country codes to country names.
-TEST(AutofillCountryTest, AllCountryCodesHaveCountryName) {
- std::vector<std::string> country_codes;
- AutofillCountry::GetAvailableCountries(&country_codes);
- for (size_t i = 0; i < country_codes.size(); ++i) {
- SCOPED_TRACE("Country code '" + country_codes[i] + "' should have a name.");
- EXPECT_NE(ASCIIToUTF16(country_codes[i]),
- AutofillCountry(country_codes[i], "en").name());
- }
-}
-
} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698