#include "include/v8-template.h"
#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"
using DictionaryTemplateTest = v8::TestWithContext;
namespace v8 {
namespace {
v8::Local<v8::String> v8_str(v8::Isolate* isolate, const char* x) { … }
v8::Local<v8::Integer> v8_int(v8::Isolate* isolate, int x) { … }
}
TEST_F(DictionaryTemplateTest, SetPropertiesAndInstantiateWithoutValues) { … }
TEST_F(DictionaryTemplateTest, SetPropertiesAndInstantiateWithSomeValues) { … }
TEST_F(DictionaryTemplateTest, SetPropertiesAndInstantiateWithAllValues) { … }
TEST_F(DictionaryTemplateTest,
TestPropertyTransitionWithDifferentRepresentation) { … }
TEST_F(DictionaryTemplateTest, PrototypeContext) { … }
}