0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 04:12:15 +02:00
keepassxc/tests/TestEntrySearcher.h

45 lines
1.2 KiB
C++
Raw Normal View History

2014-05-15 23:48:54 +02:00
/*
* 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>
2014-05-16 00:26:09 +02:00
#include "core/EntrySearcher.h"
#include "core/Group.h"
2014-05-15 23:59:26 +02:00
2014-05-15 23:48:54 +02:00
class TestEntrySearcher : public QObject
{
Q_OBJECT
private slots:
2014-05-15 23:48:54 +02:00
void initTestCase();
2014-05-15 23:59:26 +02:00
void cleanupTestCase();
2014-05-15 23:48:54 +02:00
void testAndConcatenationInSearch();
void testSearch();
2014-05-16 10:51:22 +02:00
void testAllAttributesAreSearched();
2014-05-15 23:59:26 +02:00
private:
2014-05-16 00:26:09 +02:00
Group* m_groupRoot;
EntrySearcher m_entrySearcher;
QList<Entry*> m_searchResult;
2014-05-15 23:48:54 +02:00
};
#endif // KEEPASSX_TESTENTRYSEARCHER_H