#include "components/autofill/core/browser/form_parsing/standalone_cvc_field_parser.h"
#include "base/test/scoped_feature_list.h"
#include "components/autofill/core/browser/form_parsing/parsing_test_utils.h"
#include "components/autofill/core/common/autofill_payments_features.h"
namespace autofill {
class StandaloneCvcFieldParserTest
: public FormFieldParserTestBase,
public testing::TestWithParam<PatternProviderFeatureState> { … };
INSTANTIATE_TEST_SUITE_P(…);
TEST_P(StandaloneCvcFieldParserTest, ParseStandaloneCvc) { … }
TEST_P(StandaloneCvcFieldParserTest, ParseNonStandaloneCvc) { … }
TEST_P(StandaloneCvcFieldParserTest, ParseStandaloneCvcFlagOff) { … }
TEST_P(StandaloneCvcFieldParserTest, NotParseGiftCardAsStandaloneCvc) { … }
}