mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Improve entry test.
This commit is contained in:
parent
6ee781a608
commit
57b0c17733
1 changed files with 4 additions and 1 deletions
|
@ -25,7 +25,7 @@
|
||||||
void TestEntry::testHistoryItemDeletion()
|
void TestEntry::testHistoryItemDeletion()
|
||||||
{
|
{
|
||||||
Entry* entry = new Entry();
|
Entry* entry = new Entry();
|
||||||
Entry* historyEntry = new Entry();
|
QPointer<Entry> historyEntry = new Entry();
|
||||||
|
|
||||||
entry->addHistoryItem(historyEntry);
|
entry->addHistoryItem(historyEntry);
|
||||||
QCOMPARE(entry->historyItems().size(), 1);
|
QCOMPARE(entry->historyItems().size(), 1);
|
||||||
|
@ -34,6 +34,9 @@ void TestEntry::testHistoryItemDeletion()
|
||||||
historyEntriesToRemove.append(historyEntry);
|
historyEntriesToRemove.append(historyEntry);
|
||||||
entry->removeHistoryItems(historyEntriesToRemove);
|
entry->removeHistoryItems(historyEntriesToRemove);
|
||||||
QCOMPARE(entry->historyItems().size(), 0);
|
QCOMPARE(entry->historyItems().size(), 0);
|
||||||
|
QVERIFY(historyEntry.isNull());
|
||||||
|
|
||||||
|
delete entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
QTEST_GUILESS_MAIN(TestEntry)
|
QTEST_GUILESS_MAIN(TestEntry)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue