chromium/extensions/browser/api/file_handlers/directory_util_unittest.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "extensions/browser/api/file_handlers/directory_util.h"

#include <memory>
#include <set>
#include <string>
#include <vector>

#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_browser_context.h"
#include "content/public/test/test_utils.h"
#include "extensions/browser/api/extensions_api_client.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace extensions {
namespace app_file_handler_util {
namespace {

const char kRandomPath[] =;

void OnCollectForEntriesPath(
    std::set<base::FilePath>* output,
    std::unique_ptr<std::set<base::FilePath>> path_directory_set) {}

}  // namespace

class IsDirectoryUtilTest : public testing::Test {};

TEST_F(IsDirectoryUtilTest, CollectForEntriesPaths) {}

}  // namespace app_file_handler_util
}  // namespace extensions