// Copyright (c) 2018 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/quic/core/qpack/qpack_static_table.h" #include <set> #include "absl/base/macros.h" #include "absl/strings/string_view.h" #include "quiche/quic/platform/api/quic_test.h" namespace quic { namespace test { namespace { // Check that an initialized instance has the right number of entries. TEST(QpackStaticTableTest, Initialize) { … } // Test that ObtainQpackStaticTable returns the same instance every time. TEST(QpackStaticTableTest, IsSingleton) { … } } // namespace } // namespace test } // namespace quic