Bitcoin Core 29.99.0
P2P Digital Currency
walletdb_tests.cpp
Go to the documentation of this file.
1// Copyright (c) 2012-2021 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
14namespace wallet {
16
17BOOST_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
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:147
256-bit opaque blob.
Definition: uint256.h:196
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_CASE(bnb_test)
#define BOOST_CHECK_THROW(stmt, excMatch)
Definition: object.cpp:19
Basic testing setup.
Definition: setup_common.h:64