#include "src/api/api.h"
#include "src/base/platform/semaphore.h"
#include "src/handles/handles-inl.h"
#include "src/handles/local-handles-inl.h"
#include "src/handles/persistent-handles.h"
#include "src/heap/heap.h"
#include "src/heap/local-heap-inl.h"
#include "src/heap/local-heap.h"
#include "src/heap/parked-scope.h"
#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace v8 {
using ConcurrentDescriptorArrayTest = TestWithContext;
namespace internal {
static constexpr int kNumHandles = …;
namespace {
class ConcurrentSearchThread final : public v8::base::Thread { … };
TEST_F(ConcurrentDescriptorArrayTest, LinearSearchFlatObject) { … }
TEST_F(ConcurrentDescriptorArrayTest, LinearSearchFlatObject_ManyElements) { … }
}
}
}