summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt1
-rw-r--r--tests/clientapitest.cpp4
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index f8fe3b3..a69fcb3 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -47,6 +47,7 @@ auto_tests (
47 accountstest 47 accountstest
48 testaccounttest 48 testaccounttest
49 dummyresourcemailtest 49 dummyresourcemailtest
50 interresourcemovetest
50) 51)
51generate_flatbuffers(dummyresourcetest calendar) 52generate_flatbuffers(dummyresourcetest calendar)
52target_link_libraries(dummyresourcetest sink_resource_dummy) 53target_link_libraries(dummyresourcetest sink_resource_dummy)
diff --git a/tests/clientapitest.cpp b/tests/clientapitest.cpp
index ae9286c..71be514 100644
--- a/tests/clientapitest.cpp
+++ b/tests/clientapitest.cpp
@@ -41,6 +41,10 @@ public:
41 { 41 {
42 return KAsync::null<void>(); 42 return KAsync::null<void>();
43 }; 43 };
44 KAsync::Job<void> move(const T &domainObject, const QByteArray &) Q_DECL_OVERRIDE
45 {
46 return KAsync::null<void>();
47 };
44 KAsync::Job<void> remove(const T &domainObject) Q_DECL_OVERRIDE 48 KAsync::Job<void> remove(const T &domainObject) Q_DECL_OVERRIDE
45 { 49 {
46 return KAsync::null<void>(); 50 return KAsync::null<void>();