blob: 4d7732e62afdce012e70c38163341d1a88c7752c [file] [log] [blame]
Darin Petkov98dd6a02011-06-10 15:12:57 -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_PROXY_H_
6#define SHILL_MOCK_DHCP_PROXY_H_
7
8#include <gmock/gmock.h>
9
10#include "shill/dhcp_proxy_interface.h"
11
12namespace shill {
13
14class MockDHCPProxy : public DHCPProxyInterface {
15 public:
Darin Petkovaceede32011-07-18 15:32:38 -070016 MOCK_METHOD1(Rebind, void(const std::string &interface));
17 MOCK_METHOD1(Release, void(const std::string &interface));
Darin Petkov98dd6a02011-06-10 15:12:57 -070018};
19
20} // namespace shill
21
22#endif // SHILL_MOCK_DHCP_PROXY_H_