2010-11-21 17:06:30 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
2017-06-09 17:40:36 -04:00
|
|
|
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2010-11-21 17:06:30 -05:00
|
|
|
*
|
|
|
|
* 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_TESTGROUP_H
|
|
|
|
#define KEEPASSX_TESTGROUP_H
|
|
|
|
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QObject>
|
2016-11-07 22:37:42 -05:00
|
|
|
#include "core/Database.h"
|
2010-11-21 17:06:30 -05:00
|
|
|
|
|
|
|
class TestGroup : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2017-03-10 09:58:42 -05:00
|
|
|
private slots:
|
2010-11-21 17:06:30 -05:00
|
|
|
void initTestCase();
|
|
|
|
void testParenting();
|
|
|
|
void testSignals();
|
|
|
|
void testEntries();
|
2011-07-09 15:54:01 -04:00
|
|
|
void testDeleteSignals();
|
2012-04-27 05:22:02 -04:00
|
|
|
void testCopyCustomIcon();
|
2013-04-04 15:48:55 -04:00
|
|
|
void testClone();
|
2013-04-07 13:38:18 -04:00
|
|
|
void testCopyCustomIcons();
|
2017-05-19 14:04:11 -04:00
|
|
|
void testFindEntry();
|
2017-06-21 17:34:49 -04:00
|
|
|
void testFindGroupByPath();
|
2017-05-21 13:05:44 -04:00
|
|
|
void testPrint();
|
2017-08-05 12:20:26 -04:00
|
|
|
void testLocate();
|
2017-09-06 09:14:41 -04:00
|
|
|
void testAddEntryWithPath();
|
2010-11-21 17:06:30 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_TESTGROUP_H
|