You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
449 B
19 lines
449 B
// Copyright (c) 2017 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 "random.h" |
|
|
|
#include "test/test_bitcoin.h" |
|
|
|
#include <boost/test/unit_test.hpp> |
|
|
|
BOOST_FIXTURE_TEST_SUITE(random_tests, BasicTestingSetup) |
|
|
|
BOOST_AUTO_TEST_CASE(osrandom_tests) |
|
{ |
|
BOOST_CHECK(Random_SanityCheck()); |
|
} |
|
|
|
BOOST_AUTO_TEST_SUITE_END() |
|
|
|
|