mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-05-02 14:46:07 -04:00
Move qRegisterMetaType calls into initTestCase().
This commit is contained in:
parent
36d974649e
commit
c93ac9f6fc
3 changed files with 17 additions and 3 deletions
|
@ -25,11 +25,17 @@ class TestGroup : public QObject
|
|||
Q_OBJECT
|
||||
|
||||
private Q_SLOTS:
|
||||
void initTestCase();
|
||||
void testParenting();
|
||||
void testSignals();
|
||||
void testEntries();
|
||||
};
|
||||
|
||||
void TestGroup::initTestCase()
|
||||
{
|
||||
qRegisterMetaType<Group*>("Group*");
|
||||
}
|
||||
|
||||
void TestGroup::testParenting()
|
||||
{
|
||||
Database* db = new Database();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue