PIVX Core  5.6.99
P2P Digital Currency
test_zerocoin.cpp
Go to the documentation of this file.
1 // Copyright (c) 2017-2020 The PIVX Core developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #define BOOST_TEST_MODULE Zerocoin Test Suite
6 #define BOOST_TEST_MAIN
7 
9 #include "amount.h"
10 #include "chainparams.h"
11 #include "txdb.h"
12 
13 #include <boost/test/unit_test.hpp>
14 #include <iostream>
15 
16 struct ZeroSetup {
18  std::cout << "global setup\n";
19  }
21  {
22  std::cout << "global teardown\n";
23  }
24 };
25 
27 
BOOST_GLOBAL_FIXTURE(ZeroSetup)