// Copyright 2019 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. #ifndef V8_UNITTESTS_HEAP_BITMAP_TEST_UTILS_H_ #define V8_UNITTESTS_HEAP_BITMAP_TEST_UTILS_H_ #include "src/base/build_config.h" #include "src/base/platform/memory.h" #include "src/common/globals.h" #include "src/heap/marking.h" #include "src/heap/memory-chunk-layout.h" #include "testing/gtest/include/gtest/gtest.h" namespace v8::internal { class TestWithBitmap : public ::testing::Test { … }; } // namespace v8::internal #endif // V8_UNITTESTS_HEAP_BITMAP_TEST_UTILS_H_