chromium/services/network/public/cpp/self_deleting_url_loader_factory_unittest.cc

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

#include "services/network/public/cpp/self_deleting_url_loader_factory.h"

#include <memory>

#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace network {
namespace {

class MockSelfDeletingURLLoaderFactory
    : public network::SelfDeletingURLLoaderFactory {};

class SelfDeletingURLLoaderFactoryTest : public testing::Test {};

TEST_F(SelfDeletingURLLoaderFactoryTest, InitializeAndReset) {}

}  // namespace
}  // namespace network