// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/disk_cache/simple/simple_file_enumerator.h" #include "base/path_service.h" #include "net/test/gtest_util.h" #include "net/test/test_with_task_environment.h" #include "testing/gtest/include/gtest/gtest.h" namespace disk_cache { namespace { base::FilePath GetRoot() { … } TEST(SimpleFileEnumeratorTest, Root) { … } TEST(SimpleFileEnumeratorTest, NotFound) { … } } // namespace } // namespace disk_cache