chromium/net/shared_dictionary/shared_dictionary_network_transaction_factory_unittest.cc

// Copyright 2023 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/shared_dictionary/shared_dictionary_network_transaction_factory.h"

#include "net/base/net_errors.h"
#include "net/http/http_transaction_factory.h"
#include "net/http/http_transaction_test_util.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace net {
namespace {

class DummyHttpTransactionFactory : public HttpTransactionFactory {};

TEST(SharedDictionaryNetworkTransactionFactoryTest, CreateTransaction) {}

TEST(SharedDictionaryNetworkTransactionFactoryTest, CreateTransactionFailure) {}

TEST(SharedDictionaryNetworkTransactionFactoryTest, GetCache) {}

TEST(SharedDictionaryNetworkTransactionFactoryTest, GetSession) {}

}  // namespace
}  // namespace net