blob: e7940c8172514c025dcacc7c55d6b0595159e3e8 [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SHILL_MOCK_EAP_LISTENER_H_
#define SHILL_MOCK_EAP_LISTENER_H_
#include "shill/eap_listener.h"
#include <gmock/gmock.h>
namespace shill {
class MockEapListener : public EapListener {
public:
MockEapListener();
MockEapListener(const MockEapListener&) = delete;
MockEapListener& operator=(const MockEapListener&) = delete;
~MockEapListener() override;
MOCK_METHOD(bool, Start, (), (override));
MOCK_METHOD(void, Stop, (), (override));
MOCK_METHOD(void,
set_request_received_callback,
(const EapListener::EapRequestReceivedCallback&),
(override));
};
} // namespace shill
#endif // SHILL_MOCK_EAP_LISTENER_H_