chromium/chrome/browser/browsing_data/site_data_size_collector_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 "chrome/browser/browsing_data/site_data_size_collector.h"

#include <memory>
#include <string_view>

#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "base/run_loop.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/test/base/testing_profile.h"
#include "components/browsing_data/content/mock_browsing_data_quota_helper.h"
#include "components/browsing_data/content/mock_cookie_helper.h"
#include "components/browsing_data/content/mock_local_storage_helper.h"
#include "content/public/common/content_constants.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace {

const char kCookieFileData[] =;

class SiteDataSizeCollectorTest : public testing::Test {};

TEST_F(SiteDataSizeCollectorTest, FetchCookie) {}

TEST_F(SiteDataSizeCollectorTest, FetchCookieWithoutEntry) {}

TEST_F(SiteDataSizeCollectorTest, FetchLocalStorage) {}

TEST_F(SiteDataSizeCollectorTest, FetchQuota) {}

TEST_F(SiteDataSizeCollectorTest, FetchMultiple) {}

}  // namespace