chromium/net/third_party/quiche/src/quiche/quic/core/quic_error_codes_test.cc

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

#include <cstdint>
#include <string>

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

namespace quic {
namespace test {
namespace {

QuicErrorCodesTest;

TEST_F(QuicErrorCodesTest, QuicErrorCodeToString) {}

TEST_F(QuicErrorCodesTest, QuicIetfTransportErrorCodeString) {}

TEST_F(QuicErrorCodesTest, QuicErrorCodeToTransportErrorCode) {}

QuicRstErrorCodesTest;

TEST_F(QuicRstErrorCodesTest, QuicRstStreamErrorCodeToString) {}

// When an IETF application protocol error code (sent on the wire in
// RESET_STREAM and STOP_SENDING frames) is translated into a
// QuicRstStreamErrorCode and back, it must yield the original value.
TEST_F(QuicRstErrorCodesTest,
       IetfResetStreamErrorCodeToRstStreamErrorCodeAndBack) {}

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