Warning, file /network/ruqola/src/core/autotests/translatetextjobtest.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002    SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "translatetextjobtest.h"
0008 #include "translatetext/translatetextjob.h"
0009 #include <QTest>
0010 
0011 QTEST_GUILESS_MAIN(TranslateTextJobTest)
0012 
0013 TranslateTextJobTest::TranslateTextJobTest(QObject *parent)
0014     : QObject(parent)
0015 {
0016 }
0017 
0018 void TranslateTextJobTest::shouldHaveDefaultValues()
0019 {
0020     TranslateTextJob job;
0021     QVERIFY(!job.info().isValid());
0022 }
0023 
0024 #include "moc_translatetextjobtest.cpp"