chromium/net/third_party/quiche/src/quiche/http2/hpack/decoder/hpack_string_decoder_test.cc

// Copyright 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/http2/hpack/decoder/hpack_string_decoder.h"

#include <string>

// Tests of HpackStringDecoder.

#include "absl/strings/string_view.h"
#include "quiche/http2/hpack/decoder/hpack_string_decoder_listener.h"
#include "quiche/http2/test_tools/hpack_block_builder.h"
#include "quiche/http2/test_tools/hpack_string_collector.h"
#include "quiche/http2/test_tools/http2_random.h"
#include "quiche/http2/test_tools/random_decoder_test_base.h"
#include "quiche/http2/test_tools/verify_macros.h"
#include "quiche/common/platform/api/quiche_test.h"

namespace http2 {
namespace test {
namespace {

const bool kMayReturnZeroOnFirst =;
const bool kCompressed =;
const bool kUncompressed =;

class HpackStringDecoderTest : public RandomDecoderTest {};

TEST_F(HpackStringDecoderTest, DecodeEmptyString) {}

TEST_F(HpackStringDecoderTest, DecodeShortString) {}

TEST_F(HpackStringDecoderTest, DecodeLongStrings) {}

}  // namespace
}  // namespace test
}  // namespace http2