#include "include/v8-exception.h"
#include "include/v8-function.h"
#include "include/v8-local-handle.h"
#include "include/v8-object.h"
#include "include/v8-template.h"
#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace v8 {
namespace {
using InterceptorTest = TestWithContext;
v8::Intercepted NamedGetter(Local<Name> property,
const PropertyCallbackInfo<Value>& info) { … }
TEST_F(InterceptorTest, FreezeApiObjectWithInterceptor) { … }
}
namespace internal {
namespace {
class InterceptorLoggingTest : public TestWithNativeContext { … };
TEST_F(InterceptorLoggingTest, DispatchTest) { … }
}
}
}