// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/memory/aligned_memory.h" #include <string.h> #include <memory> #include "build/build_config.h" #include "testing/gtest/include/gtest/gtest.h" namespace base { TEST(AlignedMemoryTest, DynamicAllocation) { … } TEST(AlignedMemoryTest, ScopedDynamicAllocation) { … } TEST(AlignedMemoryTest, IsAligned) { … } } // namespace base