danicoin/tests/transfers_tests/globals.h

24 lines
654 B
C
Raw Normal View History

// Copyright (c) 2011-2015 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-06-25 17:21:42 +00:00
#pragma once
#include "../integration_test_lib/BaseFunctionalTest.h"
#include "../integration_test_lib/Logger.h"
#include "gtest/gtest.h"
2014-06-25 17:21:42 +00:00
extern System::Dispatcher globalSystem;
extern cryptonote::Currency currency;
extern Tests::Common::BaseFunctionalTestConfig config;
2014-06-25 17:21:42 +00:00
class TransfersTest :
public Tests::Common::BaseFunctionalTest,
public ::testing::Test {
2014-06-25 17:21:42 +00:00
public:
TransfersTest() : BaseFunctionalTest(currency, globalSystem, config) {
}
2014-06-25 17:21:42 +00:00
};