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

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

#include <string>

#include "absl/strings/escaping.h"
#include "absl/strings/string_view.h"
#include "quiche/quic/platform/api/quic_logging.h"
#include "quiche/quic/platform/api/quic_test.h"

namespace quic {
namespace test {

class QpackInstructionWithValuesPeer {};

namespace {

class QpackInstructionEncoderTest : public QuicTestWithParam<bool> {};

INSTANTIATE_TEST_SUITE_P();

TEST_P(QpackInstructionEncoderTest, Varint) {}

TEST_P(QpackInstructionEncoderTest, SBitAndTwoVarint2) {}

TEST_P(QpackInstructionEncoderTest, SBitAndVarintAndValue) {}

TEST_P(QpackInstructionEncoderTest, Name) {}

TEST_P(QpackInstructionEncoderTest, Value) {}

TEST_P(QpackInstructionEncoderTest, SBitAndNameAndValue) {}

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