22 lines
653 B
C++
22 lines
653 B
C++
// 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.
|
|
|
|
#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) {
|
|
}
|
|
};
|