peerplays_migrated/tests/peerplays_sidechain/peerplays_sidechain_tests.cpp
obucinac 7553091d02
Peerplays SON plugin skeleton (#122)
* Peerplays SON plugin skeleton
* SON tests skeleton
2019-09-11 20:29:48 +02:00

20 lines
428 B
C++

#include <boost/test/unit_test.hpp>
#define BOOST_TEST_MODULE Peerplays SON Tests
BOOST_AUTO_TEST_CASE(peerplays_sidechain)
{
}
#include <cstdlib>
#include <iostream>
#include <boost/test/included/unit_test.hpp>
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;
return nullptr;
}