summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/wallet/wallet_test_util.cc
blob: b52183439904099afb511fd7c0e002c2619751d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/autofill/wallet/wallet_test_util.h"

#include "chrome/browser/autofill/wallet/instrument.h"
#include "chrome/browser/autofill/wallet/wallet_address.h"

namespace wallet {

scoped_ptr<Instrument> GetTestInstrument() {
  return scoped_ptr<Instrument>(new Instrument("4444444444444448",
                                               "123",
                                               12,
                                               2012,
                                               Instrument::VISA,
                                               GetTestAddress().Pass()));
}

scoped_ptr<Address> GetTestShippingAddress() {
  return scoped_ptr<Address>(new Address("ship_country_name_code",
                                         "ship_recipient_name",
                                         "ship_address_line_1",
                                         "ship_address_line_2",
                                         "ship_locality_name",
                                         "ship_admin_area_name",
                                         "ship_postal_code_number",
                                         "ship_phone_number",
                                         std::string()));
}

scoped_ptr<Address> GetTestAddress() {
  return scoped_ptr<Address>(new Address("country_name_code",
                                         "recipient_name",
                                         "address_line_1",
                                         "address_line_2",
                                         "locality_name",
                                         "admin_area_name",
                                         "postal_code_number",
                                         "phone_number",
                                         std::string()));
}

}  // namespace wallet