1 // Copyright (c) 2016-2018 The Bitcoin Core developers 2 // Distributed under the MIT software license, see the accompanying 3 // file COPYING or http://www.opensource.org/licenses/mit-license.php. 4 5 #ifndef BITCOIN_QT_TEST_RPCNESTEDTESTS_H 6 #define BITCOIN_QT_TEST_RPCNESTEDTESTS_H 7 8 #include <QObject> 9 #include <QTest> 10 11 #include <txdb.h> 12 #include <txmempool.h> 13 14 class RPCNestedTests : public QObject 15 { 16 Q_OBJECT 17 18 private Q_SLOTS: 19 void rpcNestedTests(); 20 }; 21 22 #endif // BITCOIN_QT_TEST_RPCNESTEDTESTS_H 23