Bitcoin Core  31.0.0
P2P Digital Currency
walletdb_tests.cpp
Go to the documentation of this file.
1 // Copyright (c) 2012-present 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 
6 #include <clientversion.h>
7 #include <streams.h>
8 #include <uint256.h>
9 #include <wallet/test/util.h>
10 #include <wallet/wallet.h>
11 
12 #include <boost/test/unit_test.hpp>
13 
14 namespace wallet {
16 
17 BOOST_AUTO_TEST_CASE(walletdb_readkeyvalue)
18 {
27  DataStream ssValue{};
28  uint256 dummy;
29  BOOST_CHECK_THROW(ssValue >> dummy, std::ios_base::failure);
30 }
31 
33 } // namespace wallet
#define BOOST_CHECK_THROW(stmt, excMatch)
Definition: object.cpp:18
Basic testing setup.
Definition: setup_common.h:64
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:132
BOOST_AUTO_TEST_SUITE_END()
256-bit opaque blob.
Definition: uint256.h:195
BOOST_AUTO_TEST_CASE(bnb_test)