blob: f74ccc68e9954a6b38017c23b5b960da9f3a5575 [file] [log] [blame]
Paul Stewartd408fdf2012-05-07 17:15:57 -07001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Darin Petkov77cb6812011-08-15 16:19:41 -07002// 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,
Paul Stewartd408fdf2012-05-07 17:15:57 -070020 const std::string &device_name);
Darin Petkov1bdedf12011-08-26 13:32:11 -070021 virtual ~MockDHCPConfig();
Darin Petkov77cb6812011-08-15 16:19:41 -070022
23 MOCK_METHOD0(RequestIP, bool());
Darin Petkov1bdedf12011-08-26 13:32:11 -070024
25 private:
26 DISALLOW_COPY_AND_ASSIGN(MockDHCPConfig);
Darin Petkov77cb6812011-08-15 16:19:41 -070027};
28
29} // namespace shill
30
31#endif // SHILL_MOCK_DHCP_CONFIG_H_