chromium/ios/chrome/browser/ui/price_notifications/test_price_notifications_consumer.h

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

#ifndef IOS_CHROME_BROWSER_UI_PRICE_NOTIFICATIONS_TEST_PRICE_NOTIFICATIONS_CONSUMER_H_
#define IOS_CHROME_BROWSER_UI_PRICE_NOTIFICATIONS_TEST_PRICE_NOTIFICATIONS_CONSUMER_H_

#import "ios/chrome/browser/ui/price_notifications/price_notifications_consumer.h"

@interface TestPriceNotificationsConsumer
    : NSObject <PriceNotificationsConsumer>

// Indicates whether the mediator would have been able to execute the given
// command.
@property(nonatomic, assign) BOOL didExecuteAction;

// Indicates whether the product contained on the current webpage is tracked.
@property(nonatomic, assign) BOOL isCurrentlyTrackingVisibleProduct;

@property(nonatomic, strong) PriceNotificationsTableViewItem* trackableItem;

@end

#endif  // IOS_CHROME_BROWSER_UI_PRICE_NOTIFICATIONS_TEST_PRICE_NOTIFICATIONS_CONSUMER_H_