#include <vector>
#include "base/memory/ref_counted.h"
#include "base/strings/utf_string_conversions.h"
#include "services/device/public/cpp/test/fake_usb_device_info.h"
#include "services/device/public/cpp/usb/usb_utils.h"
#include "services/device/public/mojom/usb_enumeration_options.mojom.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace device {
namespace {
Return;
class UsbUtilsTest : public testing::Test { … };
TEST_F(UsbUtilsTest, MatchAny) { … }
TEST_F(UsbUtilsTest, MatchVendorId) { … }
TEST_F(UsbUtilsTest, MatchVendorIdNegative) { … }
TEST_F(UsbUtilsTest, MatchProductId) { … }
TEST_F(UsbUtilsTest, MatchProductIdNegative) { … }
TEST_F(UsbUtilsTest, MatchInterfaceClass) { … }
TEST_F(UsbUtilsTest, MatchInterfaceClassNegative) { … }
TEST_F(UsbUtilsTest, MatchInterfaceSubclass) { … }
TEST_F(UsbUtilsTest, MatchInterfaceSubclassNegative) { … }
TEST_F(UsbUtilsTest, MatchInterfaceProtocol) { … }
TEST_F(UsbUtilsTest, MatchInterfaceProtocolNegative) { … }
TEST_F(UsbUtilsTest, MatchSerialNumber) { … }
TEST_F(UsbUtilsTest, MatchDeviceClass) { … }
TEST_F(UsbUtilsTest, MatchAnyEmptyList) { … }
TEST_F(UsbUtilsTest, MatchesAnyVendorId) { … }
TEST_F(UsbUtilsTest, MatchesAnyVendorIdNegative) { … }
TEST_F(UsbUtilsTest, EndpointDirectionNumberConversion) { … }
}
}