Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
Akonadi Contacts
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PIM
Akonadi Contacts
Commits
ff8bbd35
Commit
ff8bbd35
authored
Feb 03, 2016
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test application
parent
c6eb4543
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
0 deletions
+44
-0
akonadi-contact/CMakeLists.txt
akonadi-contact/CMakeLists.txt
+1
-0
akonadi-contact/src/editor/addresseditor/tests/CMakeLists.txt
...adi-contact/src/editor/addresseditor/tests/CMakeLists.txt
+11
-0
akonadi-contact/src/editor/addresseditor/tests/main.cpp
akonadi-contact/src/editor/addresseditor/tests/main.cpp
+32
-0
No files found.
akonadi-contact/CMakeLists.txt
View file @
ff8bbd35
...
...
@@ -82,6 +82,7 @@ install(FILES
if
(
BUILD_TESTING
)
add_subdirectory
(
src/editor/autotests
)
add_subdirectory
(
src/editor/addresseditor/autotests/
)
add_subdirectory
(
src/editor/addresseditor/tests
)
endif
()
if
(
"
${
CMAKE_BINARY_DIR
}
"
STREQUAL
"
${
CMAKE_CURRENT_BINARY_DIR
}
"
)
feature_summary
(
WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES
)
...
...
akonadi-contact/src/editor/addresseditor/tests/CMakeLists.txt
0 → 100644
View file @
ff8bbd35
set
(
addresseditor_SRCS
main.cpp
)
add_executable
(
addresseditortest
${
addresseditor_SRCS
}
)
target_link_libraries
(
addresseditortest
KF5::I18n
Qt5::Widgets
)
akonadi-contact/src/editor/addresseditor/tests/main.cpp
0 → 100644
View file @
ff8bbd35
/*
This file is part of Akonadi Contact.
Copyright (C) 2016 eyeOS S.L.U., a Telefonica company, sales@eyeos.com
Copyright (C) 2016 Laurent Montel <laurent.montel@kdab.com>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#include <QApplication>
int
main
(
int
argc
,
char
*
argv
[])
{
QApplication
app
(
argc
,
argv
);
return
app
.
exec
();
}
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