Move useful QTest template specializations to global header file

Fix KDBX test linker errors on Windows
This commit is contained in:
Janek Bevendorff 2018-01-24 13:22:20 +01:00
parent 6e2500385c
commit 7a6850d5fe
33 changed files with 143 additions and 191 deletions

View file

@ -20,6 +20,7 @@
#define KEEPASSX_TESTYUBIKEYCHALRESP_H
#include <QObject>
#include <QScopedPointer>
#include "keys/YkChallengeResponseKey.h"
@ -29,7 +30,6 @@ class TestYubiKeyChalResp: public QObject
private slots:
void initTestCase();
void cleanupTestCase();
void init();
@ -48,8 +48,8 @@ private slots:
void ykDetected(int slot, bool blocking);
private:
int m_detected;
YkChallengeResponseKey *m_key;
int m_detected = 0;
QScopedPointer<YkChallengeResponseKey> m_key;
};
#endif // KEEPASSX_TESTYUBIKEYCHALRESP_H