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

// Copyright 2023 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/system_clipboard.h"

#include <memory>

#include "base/test/bind.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/clipboard/clipboard_mime_types.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/testing/dummy_page_holder.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkImageInfo.h"
#include "ui/gfx/codec/png_codec.h"
#include "ui/gfx/geometry/size.h"

namespace blink {

namespace {

mojom::blink::ClipboardFilesPtr CreateFiles(int count) {}

}  // namespace

class SystemClipboardTest : public testing::Test {};

TEST_F(SystemClipboardTest, Text) {}

TEST_F(SystemClipboardTest, Html) {}

TEST_F(SystemClipboardTest, ReadHtml_SameFragmentArgs) {}

TEST_F(SystemClipboardTest, Rtf) {}

TEST_F(SystemClipboardTest, Png) {}

TEST_F(SystemClipboardTest, Files) {}

TEST_F(SystemClipboardTest, CustomData) {}

TEST_F(SystemClipboardTest, SnapshotNesting) {}

TEST_F(SystemClipboardTest, ReadTextWithUnboundClipboardHost) {}

TEST_F(SystemClipboardTest, ReadHtmlWithUnboundClipboardHost) {}

TEST_F(SystemClipboardTest, ReadRtfWithUnboundClipboardHost) {}

TEST_F(SystemClipboardTest, ReadPngWithUnboundClipboardHost) {}

TEST_F(SystemClipboardTest, ReadFilesWithUnboundClipboardHost) {}

TEST_F(SystemClipboardTest, IsFormatAvailableWithUnboundClipboardHost) {}

TEST_F(SystemClipboardTest, ReadAvailableTypesWithUnboundClipboardHost) {}

TEST_F(SystemClipboardTest, SequenceNumberWithUnboundClipboardHost) {}
}  // namespace blink