keepassxc/tests/TestEntrySearcher.h

46 lines
1.2 KiB
C++
Raw Normal View History

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