mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-06 10:18:44 -05:00
16 lines
250 B
C
16 lines
250 B
C
![]() |
#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
|