// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <stdint.h> #include <string> #include "services/device/public/cpp/usb/usb_ids.h" #include "testing/gtest/include/gtest/gtest.h" namespace { static const uint16_t kGoogleVendorId = …; static const uint16_t kNexusSProductId = …; } // namespace namespace device { TEST(UsbIdsTest, GetVendorName) { … } TEST(UsbIdsTest, GetProductName) { … } } // namespace device