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

0001 /*
0002    SPDX-FileCopyrightText: 2021-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "completionlistviewtest.h"
0008 #include "common/completionlistview.h"
0009 #include <QTest>
0010 QTEST_MAIN(CompletionListViewTest)
0011 CompletionListViewTest::CompletionListViewTest(QObject *parent)
0012     : QObject{parent}
0013 {
0014 }
0015 
0016 void CompletionListViewTest::shouldHaveDefaultValues()
0017 {
0018     CompletionListView w;
0019     QVERIFY(w.uniformItemSizes());
0020     QCOMPARE(w.windowType(), Qt::Popup);
0021 }
0022 
0023 #include "moc_completionlistviewtest.cpp"