blob: 456cdf8f34395b0bf9d83c1242ab889a836c3db9 [file] [log] [blame]
Paul Stewartc43cbbe2013-04-11 06:29:30 -07001// 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_eap_credentials.h"
6
7#include <gtest/gtest.h>
8
9namespace shill {
10
11MockEapCredentials::MockEapCredentials() : EapCredentials() {
12 ON_CALL(*this, key_management())
13 .WillByDefault(testing::ReturnRef(kDefaultKeyManagement));
14}
15
16MockEapCredentials::~MockEapCredentials() {}
17
18} // namespace shill