File indexing completed on 2025-01-05 03:58:08

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2009-12-06
0007  * Description : test for the filesaveoptionsbox
0008  *
0009  * SPDX-FileCopyrightText: 2009 by Johannes Wienke <languitar at semipol dot de>
0010  *
0011  * SPDX-License-Identifier: GPL-2.0-or-later
0012  *
0013  * ============================================================ */
0014 
0015 #ifndef DIGIKAM_FILE_SAVE_OPTIONS_BOX_UTEST_H
0016 #define DIGIKAM_FILE_SAVE_OPTIONS_BOX_UTEST_H
0017 
0018 // Qt includes
0019 
0020 #include <QObject>
0021 
0022 class FileSaveOptionsBoxTest : public QObject
0023 {
0024     Q_OBJECT
0025 
0026 public:
0027 
0028     explicit FileSaveOptionsBoxTest(QObject* const parent = nullptr);
0029 
0030 private Q_SLOTS:
0031 
0032     void testDiscoverFormat_data();
0033     void testDiscoverFormat();
0034 
0035     void testDiscoverFormatDefault();
0036 
0037 protected Q_SLOTS:
0038 
0039     void initTestCase();
0040     void cleanupTestCase();
0041 };
0042 
0043 #endif // DIGIKAM_FILE_SAVE_OPTIONS_BOX_UTEST_H