chromium/net/third_party/quiche/src/quiche/quic/core/qpack/qpack_encoder_stream_sender_test.cc

// 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_encoder_stream_sender.h"

#include <string>

#include "absl/strings/escaping.h"
#include "quiche/quic/platform/api/quic_test.h"
#include "quiche/quic/test_tools/qpack/qpack_test_utils.h"

Eq;
StrictMock;

namespace quic {
namespace test {
namespace {

class QpackEncoderStreamSenderTest : public QuicTestWithParam<bool> {};

INSTANTIATE_TEST_SUITE_P();

TEST_P(QpackEncoderStreamSenderTest, InsertWithNameReference) {}

TEST_P(QpackEncoderStreamSenderTest, InsertWithoutNameReference) {}

TEST_P(QpackEncoderStreamSenderTest, Duplicate) {}

TEST_P(QpackEncoderStreamSenderTest, SetDynamicTableCapacity) {}

// No writes should happen until Flush is called.
TEST_P(QpackEncoderStreamSenderTest, Coalesce) {}

// No writes should happen if QpackEncoderStreamSender::Flush() is called
// when the buffer is empty.
TEST_P(QpackEncoderStreamSenderTest, FlushEmpty) {}

}  // namespace
}  // namespace test
}  // namespace quic