David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 1 | // Copyright (c) 2012 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 | #include "shill/mock_cellular.h" |
| 6 | |
Christopher Wiley | 7d0953e | 2012-11-16 00:37:10 -0800 | [diff] [blame] | 7 | #include <gmock/gmock.h> |
| 8 | |
| 9 | #include "shill/error.h" |
| 10 | |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 11 | namespace shill { |
| 12 | |
| 13 | // TODO(rochberg): The cellular constructor does work. Ought to fix |
| 14 | // this so that we don't depend on passing real values in for Type. |
| 15 | |
Prathmesh Prabhu | 27526f1 | 2013-03-25 19:42:18 -0700 | [diff] [blame] | 16 | MockCellular::MockCellular(ModemInfo *modem_info, |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 17 | const std::string &link_name, |
| 18 | const std::string &address, |
| 19 | int interface_index, |
| 20 | Type type, |
| 21 | const std::string &owner, |
Jason Glasgow | a585fc3 | 2012-06-06 11:04:09 -0400 | [diff] [blame] | 22 | const std::string &service, |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 23 | const std::string &path, |
Ben Chan | 3ecdf82 | 2012-08-06 12:29:23 -0700 | [diff] [blame] | 24 | ProxyFactory *proxy_factory) |
Prathmesh Prabhu | 27526f1 | 2013-03-25 19:42:18 -0700 | [diff] [blame] | 25 | : Cellular(modem_info, link_name, address, interface_index, type, owner, |
| 26 | service, path, proxy_factory) {} |
David Rochberg | fa1d31d | 2012-03-20 10:38:07 -0400 | [diff] [blame] | 27 | |
| 28 | MockCellular::~MockCellular() {} |
| 29 | |
| 30 | } // namespace shill |