keepassxc/tests/TestEntry.h

39 lines
1.1 KiB
C++
Raw Normal View History

2013-03-24 20:21:06 +00:00
/*
* Copyright (C) 2013 Felix Geyer <debfx@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_TESTENTRY_H
#define KEEPASSX_TESTENTRY_H
#include <QObject>
2013-03-24 20:21:06 +00:00
class Entry;
class TestEntry : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
2013-03-24 20:21:06 +00:00
void testHistoryItemDeletion();
2013-04-14 12:21:42 +00:00
void testCopyDataFrom();
void testClone();
void testResolveUrl();
2017-10-14 12:41:45 +00:00
void testResolveUrlPlaceholders();
2013-03-24 20:21:06 +00:00
};
#endif // KEEPASSX_TESTENTRY_H