// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/modules/hid/hid_device.h" #include "services/device/public/mojom/hid.mojom-blink.h" #include "testing/gtest/include/gtest/gtest.h" namespace blink { namespace { // Construct and return a sample HID report item. device::mojom::blink::HidReportItemPtr MakeReportItem() { … } } // namespace TEST(HIDDeviceTest, singleUsageItem) { … } TEST(HIDDeviceTest, multiUsageItem) { … } TEST(HIDDeviceTest, usageRangeItem) { … } TEST(HIDDeviceTest, unitDefinition) { … } } // namespace blink