test: restore orphaned smshelper test

This test seems to have been accidentally removed from the cmake
config with https://invent.kde.org/network/kdeconnect-kde/-/merge_requests/357

This restores the config for the test file.
This commit is contained in:
Kristen McWilliam 2023-12-06 10:18:49 -05:00
parent 9ade98d51b
commit 39cdcebd1c
3 changed files with 7 additions and 3 deletions

View file

@ -24,7 +24,6 @@
#include "interfaces/conversationmessage.h"
#include "smsapp/gsmasciimap.h"
#include "smshelper_debug.h"
QObject *SmsHelper::singletonProvider(QQmlEngine * /*engine*/, QJSEngine * /*scriptEngine*/)
{

View file

@ -2,16 +2,21 @@ find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} REQUIRED COMPONENTS Test)
set(kdeconnect_libraries
kdeconnectcore
kdeconnectinterfaces
kdeconnectsmshelper
kdeconnectversion
KF${QT_MAJOR_VERSION}::I18n
KF${QT_MAJOR_VERSION}::KIOWidgets
Qt::DBus
Qt::Network
KF${QT_MAJOR_VERSION}::People
Qt::Qml
Qt::Test
)
ecm_add_test(pluginloadtest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
ecm_add_test(sendfiletest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
ecm_add_test(smshelpertest.cpp LINK_LIBRARIES ${kdeconnect_libraries})
if(MDNS_ENABLED)
ecm_add_test(mdnstest.cpp LINK_LIBRARIES ${kdeconnect_libraries})

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "smshelper.h"
#include "smsapp/smshelper.h"
#include <QtTest>
@ -239,4 +239,4 @@ void SmsHelperTest::testEmptyInput()
}
QTEST_GUILESS_MAIN(SmsHelperTest);
#include "testsmshelper.moc"
#include "smshelpertest.moc"