mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 04:57:39 +03:00
Move useful QTest template specializations to global header file
Fix KDBX test linker errors on Windows
This commit is contained in:
parent
6e2500385c
commit
7a6850d5fe
33 changed files with 143 additions and 191 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue