29 lines
631 B
C++
29 lines
631 B
C++
// Copyright (c) 2017-2018 The PIVX developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#define BOOST_TEST_MODULE Zerocoin Test Suite
|
|
#define BOOST_TEST_MAIN
|
|
|
|
#include "libzerocoin/Denominations.h"
|
|
#include "amount.h"
|
|
#include "chainparams.h"
|
|
#include "main.h"
|
|
#include "txdb.h"
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
#include <iostream>
|
|
|
|
struct ZeroSetup {
|
|
ZeroSetup() {
|
|
std::cout << "global setup\n";
|
|
}
|
|
~ZeroSetup()
|
|
{
|
|
std::cout << "global teardown\n";
|
|
}
|
|
};
|
|
|
|
BOOST_GLOBAL_FIXTURE(ZeroSetup);
|
|
|