Bitcoin Core 22.99.0
P2P Digital Currency
wallet_test_fixture.h
Go to the documentation of this file.
1// Copyright (c) 2016-2020 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_WALLET_TEST_WALLET_TEST_FIXTURE_H
6#define BITCOIN_WALLET_TEST_WALLET_TEST_FIXTURE_H
7
9
10#include <interfaces/chain.h>
11#include <interfaces/wallet.h>
12#include <node/context.h>
13#include <util/check.h>
14#include <wallet/wallet.h>
15
16#include <memory>
17
21 explicit WalletTestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
23
24 std::unique_ptr<interfaces::WalletClient> m_wallet_client = interfaces::MakeWalletClient(*m_node.chain, *Assert(m_node.args));
26 std::unique_ptr<interfaces::Handler> m_chain_notifications_handler;
27};
28
29#endif // BITCOIN_WALLET_TEST_WALLET_TEST_FIXTURE_H
#define Assert(val)
Identity function.
Definition: check.h:57
static const std::string MAIN
Chain name strings.
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:229
std::unique_ptr< WalletClient > MakeWalletClient(Chain &chain, ArgsManager &args)
Return implementation of ChainClient interface for a wallet client.
Definition: dummywallet.cpp:67
NodeContext m_node
Definition: setup_common.h:78
std::unique_ptr< interfaces::Chain > chain
Definition: context.h:50
ArgsManager * args
Definition: context.h:49
Testing setup that configures a complete environment.
Definition: setup_common.h:99
Testing setup and teardown for wallet.
WalletTestingSetup(const std::string &chainName=CBaseChainParams::MAIN)
std::unique_ptr< interfaces::Handler > m_chain_notifications_handler
std::unique_ptr< interfaces::WalletClient > m_wallet_client