// 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/common/simple_buffer_allocator.h" #include <utility> #include "quiche/common/platform/api/quiche_test.h" namespace quiche { namespace { TEST(SimpleBufferAllocatorTest, NewDelete) { … } TEST(SimpleBufferAllocatorTest, DeleteNull) { … } TEST(SimpleBufferAllocatorTest, MoveBuffersConstructor) { … } TEST(SimpleBufferAllocatorTest, MoveBuffersAssignment) { … } TEST(SimpleBufferAllocatorTest, CopyBuffer) { … } } // namespace } // namespace quiche