blob: a3b62b5f3b82e10a3f1da8b6ad0cb3dc5919893f [file] [log] [blame]
// Copyright 2022 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MODEMFWD_MOCK_NOTIFICATION_MANAGER_H_
#define MODEMFWD_MOCK_NOTIFICATION_MANAGER_H_
#include <string>
#include <vector>
#include <gmock/gmock.h>
#include "modemfwd/notification_manager.h"
namespace modemfwd {
class MockNotificationManager : public NotificationManager {
public:
MockNotificationManager() {}
~MockNotificationManager() override = default;
MOCK_METHOD(void, NotifyUpdateFirmwareCompletedSuccess, (), (override));
MOCK_METHOD(void,
NotifyUpdateFirmwareCompletedFailure,
(const std::string&),
(override));
};
} // namespace modemfwd
#endif // MODEMFWD_MOCK_NOTIFICATION_MANAGER_H_