2019-09-11 18:29:48 +00:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
|
|
|
|
#define BOOST_TEST_MODULE Peerplays SON Tests
|
|
|
|
|
|
2020-04-18 20:18:04 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(peerplays_sidechain) {
|
2019-09-11 18:29:48 +00:00
|
|
|
}
|
|
|
|
|
|
2020-04-18 20:18:04 +00:00
|
|
|
#include <boost/test/included/unit_test.hpp>
|
2019-09-11 18:29:48 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
2020-04-18 20:18:04 +00:00
|
|
|
boost::unit_test::test_suite *init_unit_test_suite(int argc, char *argv[]) {
|
|
|
|
|
std::srand(time(NULL));
|
|
|
|
|
std::cout << "Random number generator seeded to " << time(NULL) << std::endl;
|
2019-09-11 18:29:48 +00:00
|
|
|
|
2020-04-18 20:18:04 +00:00
|
|
|
return nullptr;
|
2019-09-11 18:29:48 +00:00
|
|
|
}
|