5 #include <boost/test/unit_test.hpp>
18 SetWalletDir(m_walletdir_path_cases[
"default"]);
19 bool result = m_wallet_loader->verify();
22 fs::path expected_path = fs::canonical(m_walletdir_path_cases[
"default"]);
28 SetWalletDir(m_walletdir_path_cases[
"custom"]);
29 bool result = m_wallet_loader->verify();
32 fs::path expected_path = fs::canonical(m_walletdir_path_cases[
"custom"]);
38 SetWalletDir(m_walletdir_path_cases[
"nonexistent"]);
41 bool result = m_wallet_loader->verify();
48 SetWalletDir(m_walletdir_path_cases[
"file"]);
51 bool result = m_wallet_loader->verify();
58 SetWalletDir(m_walletdir_path_cases[
"relative"]);
61 bool result = m_wallet_loader->verify();
68 SetWalletDir(m_walletdir_path_cases[
"trailing"]);
69 bool result = m_wallet_loader->verify();
72 fs::path expected_path = fs::canonical(m_walletdir_path_cases[
"default"]);
78 SetWalletDir(m_walletdir_path_cases[
"trailing2"]);
79 bool result = m_wallet_loader->verify();
82 fs::path expected_path = fs::canonical(m_walletdir_path_cases[
"default"]);