blob: 820d1813c5f07de5617c3bb078ed481f7f2afa5c [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_CELLULAR_MOCK_MM1_MODEM_LOCATION_PROXY_H_
#define SHILL_CELLULAR_MOCK_MM1_MODEM_LOCATION_PROXY_H_
#include <base/macros.h>
#include <gmock/gmock.h>
#include "shill/cellular/mm1_modem_location_proxy_interface.h"
namespace shill {
namespace mm1 {
class MockModemLocationProxy : public ModemLocationProxyInterface {
public:
MockModemLocationProxy();
~MockModemLocationProxy() override;
// Inherited methods from ModemLocationProxyInterface.
MOCK_METHOD5(Setup,
void(uint32_t sources,
bool signal_location,
Error* error,
const ResultCallback& callback,
int timeout));
MOCK_METHOD3(GetLocation,
void(Error* error,
const BrilloAnyCallback& callback,
int timeout));
private:
DISALLOW_COPY_AND_ASSIGN(MockModemLocationProxy);
};
} // namespace mm1
} // namespace shill
#endif // SHILL_CELLULAR_MOCK_MM1_MODEM_LOCATION_PROXY_H_