Merge #11353: Small refactor of CCoinsViewCache::BatchWrite()
[bitcoinplatinum.git] / src / wallet / test / wallet_test_fixture.h
blob9373b7907c0531da085507d0ebc1a3fabf572681
1 // Copyright (c) 2016 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.
5 #ifndef BITCOIN_WALLET_TEST_FIXTURE_H
6 #define BITCOIN_WALLET_TEST_FIXTURE_H
8 #include "test/test_bitcoin.h"
10 /** Testing setup and teardown for wallet.
12 struct WalletTestingSetup: public TestingSetup {
13 explicit WalletTestingSetup(const std::string& chainName = CBaseChainParams::MAIN);
14 ~WalletTestingSetup();
17 #endif