chromium/services/device/hid/hid_device_info_unittest.cc

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

#include "services/device/hid/hid_device_info.h"

#include "base/containers/flat_map.h"
#include "build/build_config.h"
#include "services/device/public/cpp/hid/hid_report_type.h"
#include "services/device/public/cpp/hid/hid_report_utils.h"
#include "services/device/public/cpp/test/test_report_descriptors.h"
#include "services/device/public/mojom/hid.mojom.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace device {

namespace {

ElementsAre;
UnorderedElementsAre;

scoped_refptr<HidDeviceInfo> CreateHidDeviceInfo(
    base::span<const uint8_t> report_descriptor) {}

TEST(HidDeviceInfoTest, FindCollectionWithReport_MultipleCollections) {}

TEST(HidDeviceInfoTest, FindCollectionWithReport_SameReportId) {}

TEST(HidDeviceInfoTest, FindCollectionWithReport_NoReportIds) {}

}  // namespace

}  // namespace device