blob: 5ea7f27a3f7ea94ab0bde140a209373403b05805 [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)
Jay Srinivasan08fce042012-06-07 16:31:01 -070018 : UpdateAttempter(NULL, NULL, dbus, NULL, NULL) {}
Darin Petkov1023a602010-08-30 13:47:51 -070019
Jay Srinivasan08fce042012-06-07 16:31:01 -070020 MOCK_METHOD6(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,
Jay Srinivasan08fce042012-06-07 16:31:01 -070024 bool is_test,
25 bool is_user_initiated));
Darin Petkov1023a602010-08-30 13:47:51 -070026};
27
28} // namespace chromeos_update_engine
29
30#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_UPDATE_ATTEMPTER_MOCK_H__