// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <string> #include "components/storage_monitor/storage_info.h" #include "testing/gtest/include/gtest/gtest.h" namespace storage_monitor { const char kMtpDeviceId[] = …; const char kUniqueId[] = …; const char kImageCaptureDeviceId[] = …; // Test to verify |MakeDeviceId| functionality using a sample // mtp device unique id. TEST(StorageInfoTest, MakeMtpDeviceId) { … } // Test to verify |CrackDeviceId| functionality using a sample // mtp device id. TEST(StorageInfoTest, CrackMtpDeviceId) { … } TEST(StorageInfoTest, TestImageCaptureDeviceId) { … } } // namespace storage_monitor