mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-05 10:17:30 -05:00
![Hennadii Stepanov](/assets/img/avatar_default.png)
-BEGIN VERIFY SCRIPT- s() { contrib/devtools/copyright_header.py insert "$1"; } s build_msvc/bitcoin_config.h s build_msvc/msvc-autogen.py s build_msvc/testconsensus/testconsensus.cpp s contrib/devtools/circular-dependencies.py s contrib/devtools/gen-manpages.sh s contrib/filter-lcov.py s contrib/gitian-build.py s contrib/install_db4.sh s src/crypto/sha256_avx2.cpp s src/crypto/sha256_sse41.cpp s src/fs.cpp s src/qt/test/addressbooktests.cpp s src/qt/test/addressbooktests.h s src/qt/test/util.cpp s src/qt/test/util.h s src/qt/test/wallettests.cpp s src/qt/test/wallettests.h s src/test/blockchain_tests.cpp s test/functional/combine_logs.py s test/lint/lint-locale-dependence.sh sed -i '1G' test/lint/lint-shebang.sh s test/lint/lint-shebang.sh -END VERIFY SCRIPT-
27 lines
605 B
C++
27 lines
605 B
C++
// 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.
|
|
|
|
#ifndef BITCOIN_QT_TEST_WALLETTESTS_H
|
|
#define BITCOIN_QT_TEST_WALLETTESTS_H
|
|
|
|
#include <QObject>
|
|
#include <QTest>
|
|
|
|
namespace interfaces {
|
|
class Node;
|
|
} // namespace interfaces
|
|
|
|
class WalletTests : public QObject
|
|
{
|
|
public:
|
|
WalletTests(interfaces::Node& node) : m_node(node) {}
|
|
interfaces::Node& m_node;
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
void walletTests();
|
|
};
|
|
|
|
#endif // BITCOIN_QT_TEST_WALLETTESTS_H
|