You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef BITCOIN_QT_TEST_WALLETTESTS_H |
|
#define BITCOIN_QT_TEST_WALLETTESTS_H |
|
|
|
#include <QObject> |
|
#include <QTest> |
|
|
|
class WalletTests : public QObject |
|
{ |
|
Q_OBJECT |
|
|
|
private Q_SLOTS: |
|
void walletTests(); |
|
}; |
|
|
|
#endif // BITCOIN_QT_TEST_WALLETTESTS_H
|
|
|