Bitcoin ABC 0.32.4
P2P Digital Currency
init_test_fixture.h
Go to the documentation of this file.
1// Copyright (c) 2018 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_INIT_TEST_FIXTURE_H
6#define BITCOIN_WALLET_TEST_INIT_TEST_FIXTURE_H
7
8#include <interfaces/chain.h>
9#include <interfaces/wallet.h>
10#include <node/context.h>
11#include <test/util/setup_common.h>
12#include <util/chaintype.h>
13
14struct InitWalletDirTestingSetup : public BasicTestingSetup {
16 const ChainType chain_type = ChainType::MAIN);
18 void SetWalletDir(const fs::path &walletdir_path);
19
22 std::map<std::string, fs::path> m_walletdir_path_cases;
23 std::unique_ptr<interfaces::WalletClient> m_wallet_client;
24};
25
26#endif // BITCOIN_WALLET_TEST_INIT_TEST_FIXTURE_H
ChainType
Definition: chaintype.h:11
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:30
std::unique_ptr< interfaces::WalletClient > m_wallet_client
std::map< std::string, fs::path > m_walletdir_path_cases
InitWalletDirTestingSetup(const ChainType chain_type=ChainType::MAIN)
void SetWalletDir(const fs::path &walletdir_path)