Bitcoin Core 28.99.0
P2P Digital Currency
wallet_test_fixture.h
Go to the documentation of this file.
1// Copyright (c) 2016-2022 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/chaintype.h>
14#include <util/check.h>
15#include <wallet/wallet.h>
16
17#include <memory>
18
19namespace wallet {
23 explicit WalletTestingSetup(const ChainType chainType = ChainType::MAIN);
25
26 std::unique_ptr<interfaces::WalletLoader> m_wallet_loader;
28 std::unique_ptr<interfaces::Handler> m_chain_notifications_handler;
29};
30} // namespace wallet
31
32#endif // BITCOIN_WALLET_TEST_WALLET_TEST_FIXTURE_H
ChainType
Definition: chaintype.h:11
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:300
Testing setup that configures a complete environment.
Definition: setup_common.h:120
Testing setup and teardown for wallet.
std::unique_ptr< interfaces::WalletLoader > m_wallet_loader
std::unique_ptr< interfaces::Handler > m_chain_notifications_handler
WalletTestingSetup(const ChainType chainType=ChainType::MAIN)