Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Geyer <blueice@fobos.de>2014-05-16 02:26:09 +0400
committerFlorian Geyer <blueice@fobos.de>2014-05-16 02:26:09 +0400
commit4f60df029d28f7e6f89d2b17405e878be03c307e (patch)
tree670612730abec322e59d7b9d97f8db76a5253cf3 /tests/TestEntrySearcher.h
parent819cfd459a63edd4baeb6eb394dd2558c6bb1d94 (diff)
Refactor TestEntrySearcher.
Diffstat (limited to 'tests/TestEntrySearcher.h')
-rw-r--r--tests/TestEntrySearcher.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/TestEntrySearcher.h b/tests/TestEntrySearcher.h
index 3e9d4f66d..194e29f0f 100644
--- a/tests/TestEntrySearcher.h
+++ b/tests/TestEntrySearcher.h
@@ -21,7 +21,8 @@
#include <QObject>
-class Group;
+#include "core/EntrySearcher.h"
+#include "core/Group.h"
class TestEntrySearcher : public QObject
{
@@ -34,7 +35,9 @@ private Q_SLOTS:
void testAndConcatenationInSearch();
void testSearch();
private:
- Group* groupRoot;
+ Group* m_groupRoot;
+ EntrySearcher m_entrySearcher;
+ QList<Entry*> m_searchResult;
};
#endif // KEEPASSX_TESTENTRYSEARCHER_H