chromium/device/bluetooth/test/bluetooth_gatt_server_test.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "device/bluetooth/test/bluetooth_gatt_server_test.h"

#include "base/check_op.h"
#include "base/memory/ptr_util.h"
#include "base/memory/ref_counted.h"
#include "device/bluetooth/public/cpp/bluetooth_uuid.h"
#include "device/bluetooth/test/bluetooth_test.h"

namespace device {

BluetoothGattServerTest::BluetoothGattServerTest() = default;

BluetoothGattServerTest::~BluetoothGattServerTest() = default;

void BluetoothGattServerTest::StartGattSetup() {}

void BluetoothGattServerTest::CompleteGattSetup() {}

void BluetoothGattServerTest::SetUp() {}

void BluetoothGattServerTest::TearDown() {}

// static
uint64_t BluetoothGattServerTest::GetInteger(
    const std::vector<uint8_t>& value) {}

// static
std::vector<uint8_t> BluetoothGattServerTest::GetValue(uint64_t int_value) {}

}  // namespace device