chromium/components/autofill/core/browser/data_model/autofill_structured_address_format_provider_unittest.cc

// Copyright 2023 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/data_model/autofill_structured_address_format_provider.h"

#include "base/test/gtest_util.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace autofill {

// Tests that GetPatterns returns an empty string  if no patterns can be found.
TEST(AutofillStructuredAddressFormatProvider, GetPatternReturnsEmpty) {}

// Tests that GetPatterns returns non empty patterns for home street address.
TEST(AutofillStructuredAddressFormatProvider, NonEmptyPatternsForHomeAddress) {}

// Tests that GetPatterns returns non empty patterns for full name.
TEST(AutofillStructuredAddressFormatProvider, NonEmptyPatternsForFullName) {}

}  // namespace autofill