// 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/numeric_quantity_field_parser.h" #include "components/autofill/core/browser/form_parsing/parsing_test_utils.h" namespace autofill { class NumericQuantityFieldParserTest : public FormFieldParserTestBase, public testing::TestWithParam<PatternProviderFeatureState> { … }; INSTANTIATE_TEST_SUITE_P(…); TEST_P(NumericQuantityFieldParserTest, ParseNumericQuantity) { … } TEST_P(NumericQuantityFieldParserTest, ParseNonNumericQuantity) { … } } // namespace autofill