// Copyright 2022 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/base/active-system-pages.h" #include "testing/gtest/include/gtest/gtest.h" namespace heap { namespace base { TEST(ActiveSystemPagesTest, Add) { … } TEST(ActiveSystemPagesTest, AddUnalignedRange) { … } TEST(ActiveSystemPagesTest, AddFullBitset) { … } TEST(ActiveSystemPagesTest, Reduce) { … } TEST(ActiveSystemPagesTest, ReduceFullBitset) { … } TEST(ActiveSystemPagesTest, Clear) { … } } // namespace base } // namespace heap