#include "components/autofill/core/browser/data_model/contact_info.h"
#include <stddef.h>
#include "base/format_macros.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/scoped_feature_list.h"
#include "components/autofill/core/browser/autofill_test_utils.h"
#include "components/autofill/core/browser/autofill_type.h"
#include "components/autofill/core/browser/data_model/autofill_profile.h"
#include "components/autofill/core/browser/data_model/autofill_structured_address_utils.h"
#include "components/autofill/core/browser/field_types.h"
#include "components/autofill/core/common/autofill_features.h"
#include "testing/gtest/include/gtest/gtest.h"
ASCIIToUTF16;
UTF8ToUTF16;
namespace autofill {
struct FullNameTestCase { … };
class SetFullNameTest : public testing::TestWithParam<FullNameTestCase> { … };
TEST_P(SetFullNameTest, SetFullName) { … }
TEST(NameInfoTest, GetMatchingTypes) { … }
INSTANTIATE_TEST_SUITE_P(…);
TEST(CompanyTest, SetRawInfo) { … }
TEST(CompanyTest, IsValid) { … }
}