blob: b4cbac7633887fbcb0344d1dca5112d57208a6db [file] [log] [blame]
Paul Stewart3c504012013-01-17 17:49:58 -08001// 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
9using testing::Return;
10
11namespace shill {
12
13MockWiFiProvider::MockWiFiProvider() : WiFiProvider(NULL, NULL, NULL, NULL) {
14 ON_CALL(*this, GetHiddenSSIDList()).WillByDefault(Return(ByteArrays()));
15}
16
17MockWiFiProvider::~MockWiFiProvider() {}
18
19} // namespace shill