#include "components/autofill/core/browser/form_parsing/search_field_parser.h"
#include <memory>
#include "components/autofill/core/browser/form_parsing/parsing_test_utils.h"
#include "components/autofill/core/common/form_data.h"
namespace autofill {
class SearchFieldParserTest
: public FormFieldParserTestBase,
public testing::TestWithParam<PatternProviderFeatureState> { … };
INSTANTIATE_TEST_SUITE_P(…);
TEST_P(SearchFieldParserTest, ParseSearchTerm) { … }
TEST_P(SearchFieldParserTest, ParseNonSearchTerm) { … }
}