1 // Copyright (c) 2016-2019 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 
8 #include <test/util/setup_common.h>
9 
10 #include <interfaces/chain.h>
11 #include <interfaces/wallet.h>
12 #include <node/context.h>
13 #include <wallet/wallet.h>
14 
15 #include <memory>
16 
17 /** Testing setup and teardown for wallet.
18  */
19 struct WalletTestingSetup: public TestingSetup {
20     explicit WalletTestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
21 
22     NodeContext m_node;
23     std::unique_ptr<interfaces::Chain> m_chain = interfaces::MakeChain(m_node);
24     std::unique_ptr<interfaces::ChainClient> m_chain_client = interfaces::MakeWalletClient(*m_chain, {});
25     CWallet m_wallet;
26     std::unique_ptr<interfaces::Handler> m_chain_notifications_handler;
27 };
28 
29 #endif // BITCOIN_WALLET_TEST_WALLET_TEST_FIXTURE_H
30