chromium/components/plus_addresses/settings/plus_address_setting_sync_test_util.h

// 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.

#ifndef COMPONENTS_PLUS_ADDRESSES_SETTINGS_PLUS_ADDRESS_SETTING_SYNC_TEST_UTIL_H_
#define COMPONENTS_PLUS_ADDRESSES_SETTINGS_PLUS_ADDRESS_SETTING_SYNC_TEST_UTIL_H_

#include "testing/gmock/include/gmock/gmock.h"

namespace plus_addresses {

// Matchers for `PlusAddressSettingSpecifics` args with given name and values.
MATCHER_P2(HasBoolSetting, name, value, "") {}
MATCHER_P2(HasStringSetting, name, value, "") {}
MATCHER_P2(HasIntSetting, name, value, "") {}

}  // namespace plus_addresses

#endif  // COMPONENTS_PLUS_ADDRESSES_SETTINGS_PLUS_ADDRESS_SETTING_SYNC_TEST_UTIL_H_