chromium/v8/test/unittests/api/dictionary-template-unittest.cc

// Copyright 2017 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 "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) {}

}  // namespace

TEST_F(DictionaryTemplateTest, SetPropertiesAndInstantiateWithoutValues) {}

TEST_F(DictionaryTemplateTest, SetPropertiesAndInstantiateWithSomeValues) {}

TEST_F(DictionaryTemplateTest, SetPropertiesAndInstantiateWithAllValues) {}

TEST_F(DictionaryTemplateTest,
       TestPropertyTransitionWithDifferentRepresentation) {}

TEST_F(DictionaryTemplateTest, PrototypeContext) {}

}  // namespace v8