File: kfilecustomdialogtest.cpp

package info (click to toggle)
kio 5.116.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,496 kB
  • sloc: cpp: 123,468; xml: 528; ansic: 466; ruby: 60; sh: 21; makefile: 13
file content (31 lines) | stat: -rw-r--r-- 864 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
    This file is part of the KDE libraries
    SPDX-FileCopyrightText: 2017 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
    Work sponsored by the LiMux project of the city of Munich

    SPDX-License-Identifier: LGPL-2.0-only
*/

#include "kfilecustomdialogtest.h"
#include "kfilecustomdialog.h"

#include <KFileWidget>
#include <QTest>
#include <QVBoxLayout>
QTEST_MAIN(KFileCustomDialogTest)

void KFileCustomDialogTest::shouldHaveDefaultValue()
{
    KFileCustomDialog dlg;
    dlg.show();
    QVERIFY(QTest::qWaitForWindowExposed(&dlg));

    QVBoxLayout *mainLayout = dlg.findChild<QVBoxLayout *>();
    QVERIFY(mainLayout);

    KFileWidget *mFileWidget = dlg.findChild<KFileWidget *>(QStringLiteral("filewidget"));
    QVERIFY(mFileWidget);
    QCOMPARE(dlg.fileWidget(), mFileWidget);
}

#include "moc_kfilecustomdialogtest.cpp"