2018-07-26 18:36:45 -04:00
|
|
|
// Copyright (c) 2016-2018 The Bitcoin Core developers
|
2016-08-20 11:19:35 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2018-03-22 15:19:44 +01:00
|
|
|
#ifndef BITCOIN_QT_TEST_RPCNESTEDTESTS_H
|
|
|
|
#define BITCOIN_QT_TEST_RPCNESTEDTESTS_H
|
2016-08-20 11:19:35 +02:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QTest>
|
|
|
|
|
|
|
|
class RPCNestedTests : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void rpcNestedTests();
|
|
|
|
};
|
|
|
|
|
2018-03-22 15:19:44 +01:00
|
|
|
#endif // BITCOIN_QT_TEST_RPCNESTEDTESTS_H
|