Lines Matching refs:cards

72 // cards that are added to the SQLite DB within the same second will be returned
263 // Add two test credit cards to the database.
272 std::vector<CreditCard*> cards;
273 cards.push_back(&credit_card0);
274 cards.push_back(&credit_card1);
275 ExpectSameElements(cards, personal_data_->GetCreditCards());
288 cards.clear();
289 cards.push_back(&credit_card0);
290 cards.push_back(&credit_card2);
291 ExpectSameElements(cards, personal_data_->GetCreditCards());
294 // to the web database, and that we can load the credit cards from the web
298 // Verify that we've loaded the credit cards from the web database.
299 cards.clear();
300 cards.push_back(&credit_card0);
301 cards.push_back(&credit_card2);
302 ExpectSameElements(cards, personal_data_->GetCreditCards());
418 // Add two test credit cards to the database.
427 std::vector<CreditCard*> cards;
428 cards.push_back(&credit_card0);
429 cards.push_back(&credit_card1);
430 ExpectSameElements(cards, personal_data_->GetCreditCards());
511 // to the web database, and that we can load the credit cards from the web
515 // Verify that we've loaded the credit cards from the web database.
748 const std::vector<CreditCard*>& cards = personal_data_->GetCreditCards();
749 ASSERT_EQ(0U, cards.size());
940 // Add the test credit cards to the database.
949 // to the web database, and that we can load the credit cards from the web
953 std::vector<CreditCard*> cards;
954 cards.push_back(&credit_card0);
955 cards.push_back(&credit_card1);
956 cards.push_back(&credit_card2);
957 cards.push_back(&credit_card3);
958 cards.push_back(&credit_card4);
959 cards.push_back(&credit_card5);
960 ExpectSameElements(cards, personal_data_->GetCreditCards());
1440 const std::vector<CreditCard*>& cards = personal_data_->GetCreditCards();
1441 ASSERT_EQ(0U, cards.size());
1561 std::vector<CreditCard*> cards;
1562 cards.push_back(&expected);
1563 cards.push_back(&expected2);
1564 ExpectSameElements(cards, personal_data_->GetCreditCards());
2026 // Ensure that if a verified credit card already exists, aggregated credit cards
2165 // Ensure that verified credit cards can be saved via SaveImportedCreditCard.