// Copyright (c) 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/quic/core/http/quic_header_list.h" #include <string> #include "quiche/quic/platform/api/quic_flags.h" #include "quiche/quic/platform/api/quic_test.h" ElementsAre; Pair; namespace quic::test { class QuicHeaderListTest : public QuicTest { … }; // This test verifies that QuicHeaderList accumulates header pairs in order. TEST_F(QuicHeaderListTest, OnHeader) { … } TEST_F(QuicHeaderListTest, DebugString) { … } // This test verifies that QuicHeaderList is copyable and assignable. TEST_F(QuicHeaderListTest, IsCopyableAndAssignable) { … } } // namespace quic::test