blob: 883081e9ee25f4d4715f8a78557c206aa0452b7a [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_MOCK_MM1_BEARER_PROXY_H_
#define SHILL_MOCK_MM1_BEARER_PROXY_H_
#include <string>
#include <gmock/gmock.h>
#include "shill/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_MOCK_MM1_BEARER_PROXY_H_