chromium/net/reporting/reporting_browsing_data_remover_unittest.cc

// Copyright 2017 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/reporting/reporting_browsing_data_remover.h"

#include <memory>
#include <string>

#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/test/simple_test_tick_clock.h"
#include "net/base/network_anonymization_key.h"
#include "net/reporting/reporting_cache.h"
#include "net/reporting/reporting_context.h"
#include "net/reporting/reporting_report.h"
#include "net/reporting/reporting_target_type.h"
#include "net/reporting/reporting_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace net {
namespace {

class ReportingBrowsingDataRemoverTest : public ReportingTestBase {};

TEST_F(ReportingBrowsingDataRemoverTest, RemoveNothing) {}

TEST_F(ReportingBrowsingDataRemoverTest, RemoveAllReports) {}

TEST_F(ReportingBrowsingDataRemoverTest, RemoveAllClients) {}

TEST_F(ReportingBrowsingDataRemoverTest, RemoveAllReportsAndClients) {}

TEST_F(ReportingBrowsingDataRemoverTest, RemoveSomeReports) {}

TEST_F(ReportingBrowsingDataRemoverTest, RemoveSomeClients) {}

}  // namespace
}  // namespace net