blob: 0773254a98986b41976c0f1a778403f1e16e08e1 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "device/bluetooth/test/mock_bluetooth_gatt_connection.h"
#include "device/bluetooth/bluetooth_adapter.h"
using ::testing::Return;
namespace device {
MockBluetoothGattConnection::MockBluetoothGattConnection(
scoped_refptr<device::BluetoothAdapter> adapter,
const std::string& device_address)
: BluetoothGattConnection(adapter, device_address) {
ON_CALL(*this, GetDeviceAddress()).WillByDefault(Return(device_address));
ON_CALL(*this, IsConnected()).WillByDefault(Return(true));
}
MockBluetoothGattConnection::~MockBluetoothGattConnection() = default;
} // namespace device