blob: 50b5c256484f103965fe0a6d3ce89b791acb85bb [file] [log] [blame]
Darin Petkov1023a602010-08-30 13:47:51 -07001// Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_MOCK_H__
6#define CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_MOCK_H__
7
8#include <gmock/gmock.h>
9
Andrew de los Reyes45168102010-11-22 11:13:50 -080010#include "update_engine/mock_dbus_interface.h"
Darin Petkov1023a602010-08-30 13:47:51 -070011#include "update_engine/update_attempter.h"
12
13namespace chromeos_update_engine {
14
15class UpdateAttempterMock : public UpdateAttempter {
16 public:
Andrew de los Reyes000d8952011-03-02 15:21:14 -080017 explicit UpdateAttempterMock(MockDbusGlib* dbus)
18 : UpdateAttempter(NULL, NULL, dbus) {}
Darin Petkov1023a602010-08-30 13:47:51 -070019
Gilad Arnold1ebd8132012-03-05 10:19:29 -080020 MOCK_METHOD5(Update, void(const std::string& app_version,
Andrew de los Reyes45168102010-11-22 11:13:50 -080021 const std::string& omaha_url,
Andrew de los Reyesfb2f4612011-06-09 18:21:49 -070022 bool obey_proxies,
Gilad Arnold1ebd8132012-03-05 10:19:29 -080023 bool interactive,
24 bool is_test));
Darin Petkov1023a602010-08-30 13:47:51 -070025};
26
27} // namespace chromeos_update_engine
28
29#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_MOCK_H__