blob: c35c300f6e0d7efc48d959236171ae893cc16edf [file] [log] [blame]
// Copyright (c) 2012 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_BEARER_PROXY_H_
#define SHILL_CELLULAR_MOCK_MM1_BEARER_PROXY_H_
#include <string>
#include <gmock/gmock.h>
#include "shill/cellular/mm1_bearer_proxy_interface.h"
namespace shill {
namespace mm1 {
class MockBearerProxy : public BearerProxyInterface {
public:
MockBearerProxy();
~MockBearerProxy() override;
MOCK_METHOD3(Connect, void(Error* error,
const ResultCallback& callback,
int timeout));
MOCK_METHOD3(Disconnect, void(Error* error,
const ResultCallback& callback,
int timeout));
};
} // namespace mm1
} // namespace shill
#endif // SHILL_CELLULAR_MOCK_MM1_BEARER_PROXY_H_