chromium/net/third_party/quiche/src/quiche/quic/core/crypto/null_decrypter_test.cc

// Copyright (c) 2012 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/crypto/null_decrypter.h"

#include "absl/base/macros.h"
#include "quiche/quic/platform/api/quic_test.h"
#include "quiche/quic/test_tools/quic_test_utils.h"

namespace quic {
namespace test {

class NullDecrypterTest : public QuicTestWithParam<bool> {};

TEST_F(NullDecrypterTest, DecryptClient) {}

TEST_F(NullDecrypterTest, DecryptServer) {}

TEST_F(NullDecrypterTest, BadHash) {}

TEST_F(NullDecrypterTest, ShortInput) {}

}  // namespace test
}  // namespace quic