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