blob: 9e4fe48af77a3ab5eda9ff121a2a7aee3854607f [file] [log] [blame]
Darin Petkov77cb6812011-08-15 16:19:41 -07001// Copyright (c) 2011 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 SHILL_MOCK_DHCP_CONFIG_H_
6#define SHILL_MOCK_DHCP_CONFIG_H_
7
Hristo Stefanoved2c28c2011-11-29 15:37:30 -08008#include <string>
9
Darin Petkov1bdedf12011-08-26 13:32:11 -070010#include <base/basictypes.h>
Darin Petkov77cb6812011-08-15 16:19:41 -070011#include <gmock/gmock.h>
12
13#include "shill/dhcp_config.h"
14
15namespace shill {
16
17class MockDHCPConfig : public DHCPConfig {
18 public:
19 MockDHCPConfig(ControlInterface *control_interface,
20 EventDispatcher *dispatcher,
21 DHCPProvider *provider,
22 const std::string &device_name,
Paul Stewartd32f4842012-01-11 16:08:13 -080023 const std::string &request_host_name,
Darin Petkov1bdedf12011-08-26 13:32:11 -070024 GLib *glib);
25 virtual ~MockDHCPConfig();
Darin Petkov77cb6812011-08-15 16:19:41 -070026
27 MOCK_METHOD0(RequestIP, bool());
Darin Petkov1bdedf12011-08-26 13:32:11 -070028
29 private:
30 DISALLOW_COPY_AND_ASSIGN(MockDHCPConfig);
Darin Petkov77cb6812011-08-15 16:19:41 -070031};
32
33} // namespace shill
34
35#endif // SHILL_MOCK_DHCP_CONFIG_H_