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 01:48:54 +0400
committerFlorian Geyer <blueice@fobos.de>2014-05-16 01:50:40 +0400
commit8bf48260034e3ffe27f3b78c128123ef7b22faa5 (patch)
treeaf70071df2b860237471e7b09b94fe69f1ea1624 /tests/TestEntrySearcher.h
parente361b0dd81a72c41f4516929c83fc61217094489 (diff)
Move search into separate class.
Diffstat (limited to 'tests/TestEntrySearcher.h')
-rw-r--r--tests/TestEntrySearcher.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/TestEntrySearcher.h b/tests/TestEntrySearcher.h
new file mode 100644
index 000000000..d261d5dd6
--- /dev/null
+++ b/tests/TestEntrySearcher.h
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2014 Florian Geyer <blueice@fobos.de>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 or (at your option)
+ * version 3 of the License.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef KEEPASSX_TESTENTRYSEARCHER_H
+#define KEEPASSX_TESTENTRYSEARCHER_H
+
+#include <QObject>
+
+class TestEntrySearcher : public QObject
+{
+ Q_OBJECT
+
+private Q_SLOTS:
+ void initTestCase();
+
+ void testAndConcatenationInSearch();
+ void testSearch();
+};
+
+#endif // KEEPASSX_TESTENTRYSEARCHER_H