blob: cdef2265f20e9b9f004bf4b00f81ee330a5936e7 [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 <base/basictypes.h>
#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_