chromium/net/third_party/quiche/src/quiche/http2/hpack/decoder/hpack_entry_collector_test.cc

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

#include "quiche/http2/test_tools/hpack_entry_collector.h"

// Tests of HpackEntryCollector.

#include "quiche/common/platform/api/quiche_logging.h"
#include "quiche/common/platform/api/quiche_test.h"

HasSubstr;

namespace http2 {
namespace test {
namespace {

TEST(HpackEntryCollectorTest, Clear) {}

// EXPECT_FATAL_FAILURE can not access variables in the scope of a test body,
// including the this variable so can not access non-static members. So, we
// define this test outside of the test body.
void IndexedHeaderErrorTest() {}

TEST(HpackEntryCollectorTest, IndexedHeader) {}

void LiteralValueErrorTest() {}

TEST(HpackEntryCollectorTest, LiteralValueHeader) {}

void LiteralNameValueHeaderErrorTest() {}

TEST(HpackEntryCollectorTest, LiteralNameValueHeader) {}

void DynamicTableSizeUpdateErrorTest() {}

TEST(HpackEntryCollectorTest, DynamicTableSizeUpdate) {}

}  // namespace
}  // namespace test
}  // namespace http2