File indexing completed on 2024-04-21 03:53:41

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2005 David Faure <faure@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef KURLMIMEDATATEST_H
0009 #define KURLMIMEDATATEST_H
0010 
0011 #include "config-kdirwatch.h"
0012 #include <QObject>
0013 
0014 class KUrlMimeDataTest : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void testURLList();
0019     void testOneURL();
0020     void testFromQUrl();
0021     void testMostLocalUrlList_data();
0022     void testMostLocalUrlList();
0023 #if HAVE_QTDBUS
0024     void testSameProcessCopyPaste();
0025 #endif
0026 };
0027 
0028 #endif