#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) { … }
TEST_F(V8DictionaryTest, Get_ExceptionOnAccess2) { … }
TEST_F(V8DictionaryTest, Get_InvalidInnerDictionary) { … }
TEST_F(V8DictionaryTest, Get_TypeConversion) { … }
TEST_F(V8DictionaryTest, Get_ConversionError) { … }
TEST_F(V8DictionaryTest, Get_ConversionError2) { … }
}
}