Darin Petkov | 77cb681 | 2011-08-15 16:19:41 -0700 | [diff] [blame] | 1 | // 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 Stefanov | ed2c28c | 2011-11-29 15:37:30 -0800 | [diff] [blame] | 8 | #include <string> |
| 9 | |
Darin Petkov | 1bdedf1 | 2011-08-26 13:32:11 -0700 | [diff] [blame] | 10 | #include <base/basictypes.h> |
Darin Petkov | 77cb681 | 2011-08-15 16:19:41 -0700 | [diff] [blame] | 11 | #include <gmock/gmock.h> |
| 12 | |
| 13 | #include "shill/dhcp_config.h" |
| 14 | |
| 15 | namespace shill { |
| 16 | |
| 17 | class MockDHCPConfig : public DHCPConfig { |
| 18 | public: |
| 19 | MockDHCPConfig(ControlInterface *control_interface, |
| 20 | EventDispatcher *dispatcher, |
| 21 | DHCPProvider *provider, |
| 22 | const std::string &device_name, |
Paul Stewart | d32f484 | 2012-01-11 16:08:13 -0800 | [diff] [blame] | 23 | const std::string &request_host_name, |
Darin Petkov | 1bdedf1 | 2011-08-26 13:32:11 -0700 | [diff] [blame] | 24 | GLib *glib); |
| 25 | virtual ~MockDHCPConfig(); |
Darin Petkov | 77cb681 | 2011-08-15 16:19:41 -0700 | [diff] [blame] | 26 | |
| 27 | MOCK_METHOD0(RequestIP, bool()); |
Darin Petkov | 1bdedf1 | 2011-08-26 13:32:11 -0700 | [diff] [blame] | 28 | |
| 29 | private: |
| 30 | DISALLOW_COPY_AND_ASSIGN(MockDHCPConfig); |
Darin Petkov | 77cb681 | 2011-08-15 16:19:41 -0700 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | } // namespace shill |
| 34 | |
| 35 | #endif // SHILL_MOCK_DHCP_CONFIG_H_ |