File: snippetselectattachmentwidgettest.cpp

package info (click to toggle)
mailcommon 4%3A24.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,412 kB
  • sloc: cpp: 30,581; xml: 340; makefile: 17; ansic: 12; sh: 3
file content (29 lines) | stat: -rw-r--r-- 973 bytes parent folder | download
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
/*
   SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org>

   SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/

#include "snippetselectattachmentwidgettest.h"
#include "snippets/snippetselectattachmentwidget.h"
#include <PimCommon/SimpleStringListEditor>
#include <QTest>
#include <QVBoxLayout>
QTEST_MAIN(SnippetSelectAttachmentWidgetTest)
SnippetSelectAttachmentWidgetTest::SnippetSelectAttachmentWidgetTest(QObject *parent)
    : QObject(parent)
{
}

void SnippetSelectAttachmentWidgetTest::shouldHaveDefaultValues()
{
    MailCommon::SnippetSelectAttachmentWidget w;
    auto mainLayout = w.findChild<QVBoxLayout *>(QStringLiteral("mainLayout"));
    QVERIFY(mainLayout);
    QCOMPARE(mainLayout->contentsMargins(), QMargins(0, 0, 0, 0));

    auto mEditor = w.findChild<PimCommon::SimpleStringListEditor *>(QStringLiteral("editor"));
    QVERIFY(mEditor);
}

#include "moc_snippetselectattachmentwidgettest.cpp"