| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/scoped_ptr.h" | 5 #include "base/scoped_ptr.h" |
| 6 #include "base/scoped_vector.h" | 6 #include "base/scoped_vector.h" |
| 7 #include "base/utf_string_conversions.h" |
| 7 #include "chrome/browser/autofill/credit_card_field.h" | 8 #include "chrome/browser/autofill/credit_card_field.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 9 #include "webkit/glue/form_field.h" | 10 #include "webkit/glue/form_field.h" |
| 10 | 11 |
| 11 namespace { | 12 namespace { |
| 12 | 13 |
| 13 class CreditCardFieldTest : public testing::Test { | 14 class CreditCardFieldTest : public testing::Test { |
| 14 public: | 15 public: |
| 15 CreditCardFieldTest() {} | 16 CreditCardFieldTest() {} |
| 16 | 17 |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 field_type_map_.find(ASCIIToUTF16("month")) != field_type_map_.end()); | 373 field_type_map_.find(ASCIIToUTF16("month")) != field_type_map_.end()); |
| 373 EXPECT_EQ(CREDIT_CARD_EXP_MONTH, field_type_map_[ASCIIToUTF16("month")]); | 374 EXPECT_EQ(CREDIT_CARD_EXP_MONTH, field_type_map_[ASCIIToUTF16("month")]); |
| 374 ASSERT_TRUE( | 375 ASSERT_TRUE( |
| 375 field_type_map_.find(ASCIIToUTF16("year")) != field_type_map_.end()); | 376 field_type_map_.find(ASCIIToUTF16("year")) != field_type_map_.end()); |
| 376 EXPECT_EQ(CREDIT_CARD_EXP_4_DIGIT_YEAR, | 377 EXPECT_EQ(CREDIT_CARD_EXP_4_DIGIT_YEAR, |
| 377 field_type_map_[ASCIIToUTF16("year")]); | 378 field_type_map_[ASCIIToUTF16("year")]); |
| 378 } | 379 } |
| 379 | 380 |
| 380 } // namespace | 381 } // namespace |
| 381 | 382 |
| OLD | NEW |