Bitcoin Core 31.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
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
14namespace wallet {
15BOOST_FIXTURE_TEST_SUITE(walletdb_tests, BasicTestingSetup)
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:133
256-bit opaque blob.
Definition uint256.h:195
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:18