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

0001 /*
0002     SPDX-FileCopyrightText: 2015 Alejandro Fiestas Olivares <afiestas@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KURLCOMBOBOXTEST_H
0008 #define KURLCOMBOBOXTEST_H
0009 
0010 #include <QObject>
0011 
0012 class KUrlComboBoxTest : public QObject
0013 {
0014     Q_OBJECT
0015 
0016 private Q_SLOTS:
0017     void testTextForItem();
0018     void testTextForItem_data();
0019     void testSetUrlMultipleTimes();
0020     void testRemoveUrl();
0021     void testAddUrls();
0022     void testSetMaxItems();
0023 };
0024 
0025 #endif // KURLCOMBOBOXTEST_H