C++程序  |  66行  |  2.32 KB

//
// Copyright (C) 2012 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

#ifndef SHILL_WIMAX_MOCK_WIMAX_DEVICE_PROXY_H_
#define SHILL_WIMAX_MOCK_WIMAX_DEVICE_PROXY_H_

#include <string>

#include <base/macros.h>
#include <gmock/gmock.h>

#include "shill/wimax/wimax_device_proxy_interface.h"

namespace shill {

class MockWiMaxDeviceProxy : public WiMaxDeviceProxyInterface {
 public:
  MockWiMaxDeviceProxy();
  ~MockWiMaxDeviceProxy() override;

  MOCK_METHOD3(Enable, void(Error* error,
                            const ResultCallback& callback,
                            int timeout));
  MOCK_METHOD3(Disable, void(Error* error,
                             const ResultCallback& callback,
                             int timeout));
  MOCK_METHOD3(ScanNetworks, void(Error* error,
                                  const ResultCallback& callback,
                                  int timeout));
  MOCK_METHOD5(Connect, void(const RpcIdentifier& network,
                             const KeyValueStore& parameters,
                             Error* error,
                             const ResultCallback& callback,
                             int timeout));
  MOCK_METHOD3(Disconnect, void(Error* error,
                                const ResultCallback& callback,
                                int timeout));
  MOCK_METHOD1(set_networks_changed_callback,
               void(const NetworksChangedCallback& callback));
  MOCK_METHOD1(set_status_changed_callback,
               void(const StatusChangedCallback& callback));
  MOCK_METHOD1(Index, uint8_t(Error* error));
  MOCK_METHOD1(Name, std::string(Error* error));
  MOCK_METHOD1(Networks, RpcIdentifiers(Error* error));

 private:
  DISALLOW_COPY_AND_ASSIGN(MockWiMaxDeviceProxy);
};

}  // namespace shill

#endif  // SHILL_WIMAX_MOCK_WIMAX_DEVICE_PROXY_H_