Bitcoin Core 22.99.0
P2P Digital Currency
walletdb_tests.cpp
Go to the documentation of this file.
1// Copyright (c) 2012-2020 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
10#include <boost/test/unit_test.hpp>
11
13
14BOOST_AUTO_TEST_CASE(walletdb_readkeyvalue)
15{
25 uint256 dummy;
26 BOOST_CHECK_THROW(ssValue >> dummy, std::ios_base::failure);
27}
28
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:205
256-bit opaque blob.
Definition: uint256.h:124
static const int CLIENT_VERSION
bitcoind-res.rc includes this file, but it cannot cope with real c++ code.
Definition: clientversion.h:33
BOOST_AUTO_TEST_SUITE_END()
#define BOOST_CHECK_THROW(stmt, excMatch)
Definition: object.cpp:19
#define BOOST_FIXTURE_TEST_SUITE(a, b)
Definition: object.cpp:14
@ SER_DISK
Definition: serialize.h:139
Basic testing setup.
Definition: setup_common.h:76
BOOST_AUTO_TEST_CASE(walletdb_readkeyvalue)