chromium/components/autofill/core/browser/form_parsing/iban_field_parser_unittest.cc

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

#include "components/autofill/core/browser/form_parsing/iban_field_parser.h"

#include "components/autofill/core/browser/form_parsing/parsing_test_utils.h"

namespace autofill {

class IbanFieldParserTest
    : public FormFieldParserTestBase,
      public testing::TestWithParam<PatternProviderFeatureState> {};

INSTANTIATE_TEST_SUITE_P();

// Match IBAN
TEST_P(IbanFieldParserTest, ParseIban) {}

TEST_P(IbanFieldParserTest, ParseIbanBanks) {}

TEST_P(IbanFieldParserTest, ParseNonIban) {}

}  // namespace autofill