File indexing completed on 2024-12-22 04:45:57

0001 /*
0002    SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "exportdatawizardtest.h"
0008 #include "importexportdata/exportdata/exportdatawizard.h"
0009 #include <QStandardPaths>
0010 #include <QTest>
0011 
0012 QTEST_MAIN(ExportDataWizardTest)
0013 
0014 ExportDataWizardTest::ExportDataWizardTest(QObject *parent)
0015     : QObject{parent}
0016 {
0017     QStandardPaths::setTestModeEnabled(true);
0018 }
0019 
0020 void ExportDataWizardTest::shouldHaveDefaultValues()
0021 {
0022     ExportDataWizard w;
0023     // TODO
0024 }
0025 
0026 #include "moc_exportdatawizardtest.cpp"