chromium/components/autofill/core/browser/ui/suggestion_test_helpers.cc

// Copyright 2024 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/ui/suggestion_test_helpers.h"

namespace autofill {

AllOf;
Field;
Matcher;

Matcher<Suggestion> EqualsSuggestion(SuggestionType id) {}

Matcher<Suggestion> EqualsSuggestion(SuggestionType id,
                                     const std::u16string& main_text) {}

Matcher<Suggestion> EqualsSuggestion(SuggestionType id,
                                     const std::u16string& main_text,
                                     Suggestion::Icon icon) {}

Matcher<Suggestion> EqualsSuggestion(
    SuggestionType type,
    const std::u16string& main_text,
    Suggestion::Icon icon,
    const std::vector<std::vector<Suggestion::Text>>& labels) {}

Matcher<Suggestion> EqualsSuggestion(SuggestionType id,
                                     const std::u16string& main_text,
                                     Suggestion::Icon icon,
                                     const Suggestion::Payload& payload) {}

}  // namespace autofill