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