mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 13:59:06 +01:00
31 lines
856 B
C++
31 lines
856 B
C++
// Copyright (c) 2014-2019 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <net.h>
|
|
|
|
#include <test/util/setup_common.h>
|
|
|
|
#include <boost/signals2/signal.hpp>
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(validation_tests, TestingSetup)
|
|
|
|
static bool ReturnFalse() { return false; }
|
|
static bool ReturnTrue() { return true; }
|
|
|
|
BOOST_AUTO_TEST_CASE(test_combiner_all)
|
|
{
|
|
boost::signals2::signal<bool (), CombinerAll> Test;
|
|
BOOST_CHECK(Test());
|
|
Test.connect(&ReturnFalse);
|
|
BOOST_CHECK(!Test());
|
|
Test.connect(&ReturnTrue);
|
|
BOOST_CHECK(!Test());
|
|
Test.disconnect(&ReturnFalse);
|
|
BOOST_CHECK(Test());
|
|
Test.disconnect(&ReturnTrue);
|
|
BOOST_CHECK(Test());
|
|
}
|
|
BOOST_AUTO_TEST_SUITE_END()
|