// Copyright 2018 the V8 project 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 "src/heap/list.h" #include "testing/gtest-support.h" namespace v8 { namespace internal { namespace heap { class TestChunk { … }; TEST(List, InsertAtTailAndRemove) { … } TEST(List, InsertAtHeadAndRemove) { … } TEST(List, InsertMultipleAtTailAndRemoveFromTail) { … } TEST(List, InsertMultipleAtHeadAndRemoveFromHead) { … } TEST(List, InsertMultipleAtTailAndRemoveFromMiddle) { … } } // namespace heap } // namespace internal } // namespace v8