From 2ea5824fd722bca63acda8b50fc4af8d0a04adea Mon Sep 17 00:00:00 2001 From: Evgeniy Alekseev Date: Wed, 19 Oct 2016 00:01:09 +0300 Subject: [PATCH] add test case for new method --- sources/test/testdpplugin.cpp | 7 +++++++ sources/test/testdpplugin.h | 1 + 2 files changed, 8 insertions(+) diff --git a/sources/test/testdpplugin.cpp b/sources/test/testdpplugin.cpp index e7b4b75..652ba0f 100644 --- a/sources/test/testdpplugin.cpp +++ b/sources/test/testdpplugin.cpp @@ -67,6 +67,13 @@ void TestDPPlugin::test_dictKeys() } +void TestDPPlugin::test_infoByKey() +{ + // nothing to test here yet + QVERIFY(true); +} + + void TestDPPlugin::test_parsePattern() { QString result = plugin->parsePattern(pattern, plugin->currentDesktop()); diff --git a/sources/test/testdpplugin.h b/sources/test/testdpplugin.h index 71d89d6..fd2cb93 100644 --- a/sources/test/testdpplugin.h +++ b/sources/test/testdpplugin.h @@ -35,6 +35,7 @@ private slots: // test void test_desktops(); void test_dictKeys(); + void test_infoByKey(); void test_tooltipImage(); void test_parsePattern();