This commit is contained in:
2022-02-03 23:45:47 -08:00
parent 42c2062cc4
commit 184ece190c
1438 changed files with 404064 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
// 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);