chromium/third_party/blink/renderer/bindings/core/v8/dictionary_test.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/bindings/core/v8/dictionary.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/core/v8/idl_types.h"
#include "third_party/blink/renderer/bindings/core/v8/native_value_traits_impl.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_testing.h"
#include "third_party/blink/renderer/platform/bindings/script_state.h"
#include "third_party/blink/renderer/platform/testing/exception_state_matchers.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
#include "v8/include/v8.h"

namespace blink {

namespace {

class V8DictionaryTest : public testing::Test {};

TEST_F(V8DictionaryTest, Get_Empty) {}

TEST_F(V8DictionaryTest, Get_NonPresentForNonEmpty) {}

TEST_F(V8DictionaryTest, Get_UndefinedValue) {}

TEST_F(V8DictionaryTest, Get_Found) {}

TEST_F(V8DictionaryTest, Get_Found2) {}

TEST_F(V8DictionaryTest, Get_Getter) {}

TEST_F(V8DictionaryTest, Get_ExceptionOnAccess) {}

// TODO(bashi,yukishiino): Should rethrow the exception.
// http://crbug.com/666661
TEST_F(V8DictionaryTest, Get_ExceptionOnAccess2) {}

// TODO(bashi,yukishiino): Should rethrow the exception.
// http://crbug.com/666661
TEST_F(V8DictionaryTest, Get_InvalidInnerDictionary) {}

TEST_F(V8DictionaryTest, Get_TypeConversion) {}

TEST_F(V8DictionaryTest, Get_ConversionError) {}

TEST_F(V8DictionaryTest, Get_ConversionError2) {}

}  // namespace

}  // namespace blink