Chris Masone | 34af218 | 2011-08-22 11:59:36 -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_IPCONFIG_ |
| 6 | #define SHILL_MOCK_IPCONFIG_ |
| 7 | |
Hristo Stefanov | ed2c28c | 2011-11-29 15:37:30 -0800 | [diff] [blame] | 8 | #include <string> |
| 9 | |
Darin Petkov | ef34f18 | 2011-08-26 14:14:40 -0700 | [diff] [blame] | 10 | #include <base/basictypes.h> |
Chris Masone | 34af218 | 2011-08-22 11:59:36 -0700 | [diff] [blame] | 11 | #include <gmock/gmock.h> |
| 12 | |
| 13 | #include "shill/ipconfig.h" |
| 14 | |
| 15 | namespace shill { |
Chris Masone | 34af218 | 2011-08-22 11:59:36 -0700 | [diff] [blame] | 16 | |
| 17 | class MockIPConfig : public IPConfig { |
| 18 | public: |
| 19 | MockIPConfig(ControlInterface *control_interface, |
Darin Petkov | ef34f18 | 2011-08-26 14:14:40 -0700 | [diff] [blame] | 20 | const std::string &device_name); |
| 21 | virtual ~MockIPConfig(); |
Chris Masone | 34af218 | 2011-08-22 11:59:36 -0700 | [diff] [blame] | 22 | |
| 23 | MOCK_METHOD0(RequestIP, bool(void)); |
| 24 | MOCK_METHOD0(RenewIP, bool(void)); |
| 25 | MOCK_METHOD0(ReleaseIP, bool(void)); |
| 26 | |
Hristo Stefanov | ed2c28c | 2011-11-29 15:37:30 -0800 | [diff] [blame] | 27 | MOCK_METHOD2(Load, bool(StoreInterface *storage, |
| 28 | const std::string &id_suffix)); |
| 29 | MOCK_METHOD2(Save, bool(StoreInterface *storage, |
| 30 | const std::string &id_suffix)); |
Darin Petkov | ef34f18 | 2011-08-26 14:14:40 -0700 | [diff] [blame] | 31 | |
| 32 | private: |
| 33 | DISALLOW_COPY_AND_ASSIGN(MockIPConfig); |
Chris Masone | 34af218 | 2011-08-22 11:59:36 -0700 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | } // namespace shill |
| 37 | |
| 38 | #endif // SHILL_MOCK_IPCONFIG_ |