2021-08-11 06:18:40 +02:00
|
|
|
// Copyright (c) 2014-2019 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-18 10:11:00 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <net.h>
|
2014-02-19 01:54:11 +01:00
|
|
|
|
2021-10-25 17:58:37 +02:00
|
|
|
#include <test/setup_common.h>
|
2015-03-09 15:04:12 +01:00
|
|
|
|
2015-04-01 16:03:11 +02:00
|
|
|
#include <boost/signals2/signal.hpp>
|
2014-02-19 01:54:11 +01:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
2021-08-11 06:18:40 +02:00
|
|
|
BOOST_FIXTURE_TEST_SUITE(validation_tests, TestingSetup)
|
2014-02-19 01:54:11 +01:00
|
|
|
|
2018-05-04 22:42:39 +02:00
|
|
|
static bool ReturnFalse() { return false; }
|
|
|
|
static bool ReturnTrue() { return true; }
|
2015-03-05 13:01:01 +01:00
|
|
|
|
|
|
|
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());
|
|
|
|
}
|
2014-02-19 01:54:11 +01:00
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|