chromium/chrome/browser/ui/autofill/payments/autofill_dialog_models_unittest.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/autofill/payments/autofill_dialog_models.h"

#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "chrome/grit/generated_resources.h"
#include "components/autofill/core/browser/test_autofill_clock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"

namespace autofill {

namespace {

const base::Time kJune2017 =;

}  // namespace

TEST(YearComboboxModelTest, ExpirationYear) {}

// Tests that we show the correct years, including an additional year.
TEST(YearComboboxModelTest, ShowAdditionalYear) {}

// Tests that we show the additional year, even if it is more than 10 years from
// now.
TEST(YearComboboxModelTest, ExpirationYear_ShowFarFutureYear) {}

TEST(YearComboboxModelTest, SetDefaultIndexByYear) {}

TEST(YearComboboxModelTest, SetDefaultIndexByYearOutOfRange) {}

TEST(YearComboboxModelTest, SetDefaultIndexByYearAdditionalYear) {}

TEST(MonthComboboxModelTest, SetDefaultIndexByMonth) {}

TEST(MonthComboboxModelTest, SetDefaultIndexByMonthOutOfRange) {}

}  // namespace autofill