File indexing completed on 2024-04-28 15:29:18

0001 /*
0002     SPDX-FileCopyrightText: 2007 David Faure <faure@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef PARTTEST_H
0008 #define PARTTEST_H
0009 
0010 #include <QObject>
0011 
0012 class PartTest : public QObject
0013 {
0014     Q_OBJECT
0015 private Q_SLOTS:
0016     void testAutoDeletePart();
0017     void testAutoDeleteWidget();
0018     void testNoAutoDeletePart();
0019     void testNoAutoDeleteWidget();
0020 
0021     void testOpenUrlArguments();
0022     void testAutomaticMimeType();
0023     void testEmptyUrlAfterCloseUrl();
0024 
0025     void testToolbarVisibility();
0026     void testShouldNotCrashAfterDelete();
0027 };
0028 
0029 #endif /* PARTTEST_H */