chromium/ui/base/clipboard/custom_data_helper_unittest.cc

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

#include "ui/base/clipboard/custom_data_helper.h"

#include <utility>

#include "base/pickle.h"
#include "base/strings/utf_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"

ASCIIToUTF16;

namespace ui {

namespace {

void PrepareEmptyTestData(base::Pickle* pickle) {}

void PrepareTestData(base::Pickle* pickle) {}

TEST(CustomDataHelperTest, EmptyReadTypes) {}

TEST(CustomDataHelperTest, EmptyReadSingleType) {}

TEST(CustomDataHelperTest, EmptyReadMap) {}

TEST(CustomDataHelperTest, ReadTypes) {}

TEST(CustomDataHelperTest, ReadSingleType) {}

TEST(CustomDataHelperTest, ReadMap) {}

TEST(CustomDataHelperTest, BadReadTypes) {}

TEST(CustomDataHelperTest, BadPickle) {}

}  // namespace

}  // namespace ui