File indexing completed on 2024-04-14 14:24:06

0001 /*
0002     This file is part of KDE Frameworks
0003     SPDX-FileCopyrightText: 2005-2006 David Faure <faure@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef KIOPASTETEST_H
0009 #define KIOPASTETEST_H
0010 
0011 #include <QObject>
0012 #include <QString>
0013 #include <QTemporaryDir>
0014 
0015 class KIOPasteTest : public QObject
0016 {
0017     Q_OBJECT
0018 private Q_SLOTS:
0019     void initTestCase();
0020 
0021     void testPopulate();
0022     void testCut();
0023     void testPasteActionText_data();
0024     void testPasteActionText();
0025     void testPasteJob_data();
0026     void testPasteJob();
0027 
0028 private:
0029     QTemporaryDir m_tempDir;
0030     QString m_dir;
0031 };
0032 
0033 #endif