File indexing completed on 2024-05-26 05:05:44

0001 /*
0002    SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "showvideodialogtest.h"
0008 #include "dialogs/showvideodialog.h"
0009 #include "dialogs/showvideowidget.h"
0010 #include <QDialogButtonBox>
0011 #include <QStandardPaths>
0012 #include <QTest>
0013 #include <QVBoxLayout>
0014 QTEST_MAIN(ShowVideoDialogTest)
0015 ShowVideoDialogTest::ShowVideoDialogTest(QObject *parent)
0016     : QObject(parent)
0017 {
0018     QStandardPaths::setTestModeEnabled(true);
0019 }
0020 
0021 void ShowVideoDialogTest::shouldHaveDefaultValues()
0022 {
0023     ShowVideoDialog w(nullptr);
0024     QVERIFY(!w.windowTitle().isEmpty());
0025 
0026     auto mainLayout = w.findChild<QVBoxLayout *>(QStringLiteral("mainLayout"));
0027     QVERIFY(mainLayout);
0028 
0029     auto mShowVideoWidget = w.findChild<ShowVideoWidget *>(QStringLiteral("mShowVideoWidget"));
0030     QVERIFY(mShowVideoWidget);
0031 
0032     auto button = w.findChild<QDialogButtonBox *>(QStringLiteral("button"));
0033     QVERIFY(button);
0034 }
0035 
0036 #include "moc_showvideodialogtest.cpp"