chromium/net/third_party/quiche/src/quiche/http2/hpack/hpack_static_table_test.cc

// Copyright 2014 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/hpack/hpack_static_table.h"

#include <set>
#include <vector>

#include "absl/strings/string_view.h"
#include "quiche/http2/hpack/hpack_constants.h"
#include "quiche/http2/hpack/hpack_header_table.h"
#include "quiche/common/platform/api/quiche_test.h"

namespace spdy {

namespace test {

namespace {

class HpackStaticTableTest : public quiche::test::QuicheTest {};

// Check that an initialized instance has the right number of entries.
TEST_F(HpackStaticTableTest, Initialize) {}

// Test that ObtainHpackStaticTable returns the same instance every time.
TEST_F(HpackStaticTableTest, IsSingleton) {}

}  // namespace

}  // namespace test

}  // namespace spdy