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

// Copyright (c) 2019 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_blocking_manager.h"

#include <limits>

#include "quiche/quic/platform/api/quic_test.h"

namespace quic {
namespace test {

class QpackBlockingManagerPeer {};

namespace {

class QpackBlockingManagerTest : public QuicTest {};

TEST_F(QpackBlockingManagerTest, Empty) {}

TEST_F(QpackBlockingManagerTest, NotBlockedByInsertCountIncrement) {}

TEST_F(QpackBlockingManagerTest, UnblockedByInsertCountIncrement) {}

TEST_F(QpackBlockingManagerTest, NotBlockedByHeaderAcknowledgement) {}

TEST_F(QpackBlockingManagerTest, UnblockedByHeaderAcknowledgement) {}

TEST_F(QpackBlockingManagerTest, KnownReceivedCount) {}

TEST_F(QpackBlockingManagerTest, SmallestBlockingIndex) {}

TEST_F(QpackBlockingManagerTest, HeaderAcknowledgementsOnSingleStream) {}

TEST_F(QpackBlockingManagerTest, CancelStream) {}

TEST_F(QpackBlockingManagerTest, BlockingAllowedOnStream) {}

TEST_F(QpackBlockingManagerTest, InsertCountIncrementOverflow) {}

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