// Copyright 2016 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 "test/cctest/cctest.h" namespace v8 { namespace internal { namespace test_usecounters { int* global_use_counts = …; void MockUseCounterCallback(v8::Isolate* isolate, v8::Isolate::UseCounterFeature feature) { … } TEST(AssigmentExpressionLHSIsCall) { … } TEST(RegExpMatchIsTrueishOnNonJSRegExp) { … } TEST(RegExpMatchIsFalseishOnJSRegExp) { … } TEST(ObjectPrototypeHasElements) { … } TEST(ArrayPrototypeHasElements) { … } } // namespace test_usecounters } // namespace internal } // namespace v8