2019-12-07 18:14:40 +02:00
|
|
|
// Copyright (c) 2017-2019 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-03-10 15:58:53 -05:00
|
|
|
#ifndef BITCOIN_QT_TEST_WALLETTESTS_H
|
|
|
|
#define BITCOIN_QT_TEST_WALLETTESTS_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QTest>
|
|
|
|
|
2019-09-17 18:28:03 -04:00
|
|
|
namespace interfaces {
|
|
|
|
class Node;
|
|
|
|
} // namespace interfaces
|
|
|
|
|
2017-03-10 15:58:53 -05:00
|
|
|
class WalletTests : public QObject
|
|
|
|
{
|
2019-09-17 18:28:03 -04:00
|
|
|
public:
|
|
|
|
WalletTests(interfaces::Node& node) : m_node(node) {}
|
|
|
|
interfaces::Node& m_node;
|
|
|
|
|
2017-03-10 15:58:53 -05:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void walletTests();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_QT_TEST_WALLETTESTS_H
|