// 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_block_collector.h" #include <string> // Tests of HpackBlockCollector. Not intended to be comprehensive, as // HpackBlockCollector is itself support for testing HpackBlockDecoder, and // should be pretty thoroughly exercised via the tests of HpackBlockDecoder. #include "quiche/http2/test_tools/hpack_block_builder.h" #include "quiche/common/platform/api/quiche_test.h" namespace http2 { namespace test { namespace { TEST(HpackBlockCollectorTest, Clear) { … } TEST(HpackBlockCollectorTest, IndexedHeader) { … } TEST(HpackBlockCollectorTest, DynamicTableSizeUpdate) { … } } // namespace } // namespace test } // namespace http2