Paul Stewart | 3c50401 | 2013-01-17 17:49:58 -0800 | [diff] [blame] | 1 | // Copyright (c) 2013 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_wifi_provider.h" |
| 6 | |
| 7 | #include "shill/wifi_service.h" // Needed for mock method instantiation. |
| 8 | |
| 9 | using testing::Return; |
| 10 | |
| 11 | namespace shill { |
| 12 | |
| 13 | MockWiFiProvider::MockWiFiProvider() : WiFiProvider(NULL, NULL, NULL, NULL) { |
| 14 | ON_CALL(*this, GetHiddenSSIDList()).WillByDefault(Return(ByteArrays())); |
| 15 | } |
| 16 | |
| 17 | MockWiFiProvider::~MockWiFiProvider() {} |
| 18 | |
| 19 | } // namespace shill |