third_party.pigweed.src/pw_bluetooth/api_test.cc
Ben Lawson 4331b174c4 pw_bluetooth: Create pw_bluetooth API
Create the pw_bluetooth module.

Create the Bluetooth Low Energy C++ API in the pw_bluetooth module.
This API will be used to wrap various BLE implementations.

Bug: 636
Change-Id: I329c8e0f307d30a26581a43cb46cf2d3dbd35da0
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/84180
Pigweed-Auto-Submit: Ben Lawson <benlawson@google.com>
Reviewed-by: Keir Mierle <keir@google.com>
Commit-Queue: Ben Lawson <benlawson@google.com>
2022-06-15 22:31:19 +00:00

25 lines
829 B
C++

// Copyright 2022 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
#include "gtest/gtest.h"
#include "pw_bluetooth/host.h"
namespace pw::bluetooth {
namespace {
// This empty test ensures that the included API compiles.
TEST(ApiTest, ApiCompiles) {}
} // namespace
} // namespace pw::bluetooth