// Copyright 2017 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/fido/cable/fido_ble_frames.h" #include <vector> #include "base/ranges/algorithm.h" #include "testing/gtest/include/gtest/gtest.h" namespace { std::vector<uint8_t> GetSomeData(size_t size) { … } } // namespace namespace device { TEST(FidoBleFramesTest, InitializationFragment) { … } TEST(FidoBleFramesTest, ContinuationFragment) { … } TEST(FidoBleFramesTest, SplitAndAssemble) { … } TEST(FidoBleFramesTest, FrameAssemblerError) { … } TEST(FidoBleFramesTest, FrameGettersAndValidity) { … } } // namespace device