// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/files/block_tests_writing_to_special_dirs.h" #include "base/files/file_path.h" #include "base/path_service.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { class BlockTestsWritingToSpecialDirsTest : public testing::Test { … }; // Test that with no special dirs blocked, // BlockTestsWritingToSpecialDirs::CanWriteToPath returns true. TEST_F(BlockTestsWritingToSpecialDirsTest, NoSpecialDirWriteBlocker) { … } TEST_F(BlockTestsWritingToSpecialDirsTest, SpecialDirWriteBlocker) { … } } // namespace base