chromium/net/third_party/quiche/src/quiche/common/quiche_buffer_allocator_test.cc

// Copyright 2022 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/common/quiche_buffer_allocator.h"

#include "absl/strings/string_view.h"
#include "quiche/common/platform/api/quiche_expect_bug.h"
#include "quiche/common/platform/api/quiche_test.h"
#include "quiche/common/simple_buffer_allocator.h"
#include "quiche/common/test_tools/quiche_test_utils.h"

namespace quiche {
namespace test {
namespace {

TEST(QuicheBuffer, CopyFromEmpty) {}

TEST(QuicheBuffer, Copy) {}

TEST(QuicheBuffer, CopyFromIovecZeroBytes) {}

TEST(QuicheBuffer, CopyFromIovecSimple) {}

TEST(QuicheBuffer, CopyFromIovecMultiple) {}

TEST(QuicheBuffer, CopyFromIovecOffsetTooLarge) {}

TEST(QuicheBuffer, CopyFromIovecTooManyBytesRequested) {}

}  // anonymous namespace
}  // namespace test
}  // namespace quiche