| // 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 "net/third_party/quiche/src/quic/core/quic_simple_buffer_allocator.h" |
| |
| #include "net/third_party/quiche/src/quic/core/quic_packets.h" |
| #include "net/third_party/quiche/src/quic/platform/api/quic_test.h" |
| |
| namespace quic { |
| namespace { |
| |
| class SimpleBufferAllocatorTest : public QuicTest {}; |
| |
| TEST_F(SimpleBufferAllocatorTest, NewDelete) { |
| SimpleBufferAllocator alloc; |
| char* buf = alloc.New(4); |
| EXPECT_NE(nullptr, buf); |
| alloc.Delete(buf); |
| } |
| |
| TEST_F(SimpleBufferAllocatorTest, DeleteNull) { |
| SimpleBufferAllocator alloc; |
| alloc.Delete(nullptr); |
| } |
| |
| } // namespace |
| } // namespace quic |