blob: ac5f552a9424b9ec46293a0d860a47893ba52e04 [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() override;
MOCK_METHOD(bool, Start, (), (override));
MOCK_METHOD(void, Stop, (), (override));
MOCK_METHOD(void,
set_request_received_callback,
(const EapListener::EapRequestReceivedCallback&),
(override));
private:
DISALLOW_COPY_AND_ASSIGN(MockEapListener);
};
} // namespace shill
#endif // SHILL_MOCK_EAP_LISTENER_H_