mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Implement KDBX 4.1 extended custom icons
This commit is contained in:
parent
70e62d90db
commit
390e14b2c6
17 changed files with 137 additions and 48 deletions
|
@ -152,3 +152,15 @@ void TestDeletedObjects::testDatabaseChange()
|
|||
|
||||
delete group;
|
||||
}
|
||||
|
||||
void TestDeletedObjects::testCustomIconDeletion()
|
||||
{
|
||||
Database db;
|
||||
QCOMPARE(db.deletedObjects().size(), 0);
|
||||
|
||||
QUuid uuid = QUuid::createUuid();
|
||||
db.metadata()->addCustomIcon(uuid, QByteArray());
|
||||
db.metadata()->removeCustomIcon(uuid);
|
||||
QCOMPARE(db.deletedObjects().size(), 1);
|
||||
QCOMPARE(db.deletedObjects().at(0).uuid, uuid);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue