blob: 556d56451d1becfd03798770f253b68dcc7958c5 [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_WIFI_MOCK_TDLS_MANAGER_H_
#define SHILL_WIFI_MOCK_TDLS_MANAGER_H_
#include <string>
#include <gmock/gmock.h>
#include "shill/wifi/tdls_manager.h"
#include "shill/error.h"
namespace shill {
class MockTDLSManager : public TDLSManager {
public:
MockTDLSManager();
~MockTDLSManager() override;
MOCK_METHOD(std::string,
PerformOperation,
(const std::string&, const std::string&, Error*),
(override));
MOCK_METHOD(void,
OnDiscoverResponseReceived,
(const std::string&),
(override));
private:
DISALLOW_COPY_AND_ASSIGN(MockTDLSManager);
};
} // namespace shill
#endif // SHILL_WIFI_MOCK_TDLS_MANAGER_H_