#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) { … }
}
}