Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KMail
Commits
614a479e
Commit
614a479e
authored
Apr 26, 2021
by
Laurent Montel
😁
Browse files
Remove old test
parent
09d2386e
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/tests/CMakeLists.txt
View file @
614a479e
...
...
@@ -12,11 +12,6 @@ set(searchdbustest_SRCS searchdbustest.cpp)
add_executable
(
searchdbustest
${
searchdbustest_SRCS
}
)
target_link_libraries
(
searchdbustest Qt::DBus Qt5::Widgets KF5::PimCommonAkonadi
)
#####
set
(
ktoolinvocationtest_SRCS ktoolinvocationtest.cpp
)
add_executable
(
ktoolinvocationtest
${
ktoolinvocationtest_SRCS
}
)
target_link_libraries
(
ktoolinvocationtest Qt::DBus KF5::Service KF5::I18n
)
#####
set
(
searchmailertest_SRCS searchmailertest.cpp
)
add_executable
(
searchmailertest
${
searchmailertest_SRCS
}
)
...
...
src/tests/ktoolinvocationtest.cpp
deleted
100644 → 0
View file @
09d2386e
/*
SPDX-FileCopyrightText: 2016-2021 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <QDebug>
#include <KToolInvocation>
#include <QCommandLineParser>
#include <QCoreApplication>
#include <QStandardPaths>
int
main
(
int
argc
,
char
**
argv
)
{
qDebug
()
<<
"Test kinvocation by desktop name."
;
QCoreApplication
app
(
argc
,
argv
);
QCommandLineParser
parser
;
parser
.
addVersionOption
();
parser
.
addHelpOption
();
parser
.
process
(
app
);
QString
errmsg
;
if
(
KToolInvocation
::
startServiceByDesktopName
(
QStringLiteral
(
"org.kde.kmail2"
),
QString
(),
&
errmsg
))
{
qDebug
()
<<
" Can not start kmail"
<<
errmsg
;
}
const
QString
desktopFile
=
QStandardPaths
::
locate
(
QStandardPaths
::
ApplicationsLocation
,
QStringLiteral
(
"org.kde.korganizer.desktop"
));
if
(
KToolInvocation
::
startServiceByDesktopPath
(
desktopFile
)
>
0
)
{
qDebug
()
<<
" Can not start korganizer"
;
}
qDebug
()
<<
"kinvocation done."
;
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment