chromium/third_party/blink/renderer/core/clipboard/data_object_test.cc

// Copyright 2014 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/core/clipboard/data_object.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/clipboard/data_object_item.h"
#include "third_party/blink/renderer/core/testing/null_execution_context.h"
#include "third_party/blink/renderer/platform/file_metadata.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"

namespace blink {

class DataObjectTest : public testing::Test {};

class DataObjectObserver : public GarbageCollected<DataObjectObserver>,
                           public DataObject::Observer {};

TEST_F(DataObjectTest, DataObjectObserver) {}

TEST_F(DataObjectTest, addItemWithFilenameAndNoTitle) {}

TEST_F(DataObjectTest, addItemWithFilenameAndTitle) {}

TEST_F(DataObjectTest, fileSystemId) {}

}  // namespace blink