danicoin/tests/TransfersTests/Globals.h
2016-01-18 15:33:29 +00:00

23 lines
653 B
C++

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
#include "../IntegrationTestLib/BaseFunctionalTests.h"
#include "../IntegrationTestLib/Logger.h"
#include "gtest/gtest.h"
extern System::Dispatcher globalSystem;
extern CryptoNote::Currency currency;
extern Tests::Common::BaseFunctionalTestsConfig config;
class TransfersTest :
public Tests::Common::BaseFunctionalTests,
public ::testing::Test {
public:
TransfersTest() : BaseFunctionalTests(currency, globalSystem, config) {
}
};