2015-12-13 16:58:29 +00:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-09-05 11:11:11 +00:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 15:16:40 +00:00
|
|
|
#ifndef BITCOIN_QT_TEST_URITESTS_H
|
|
|
|
#define BITCOIN_QT_TEST_URITESTS_H
|
2012-03-25 21:25:10 +00:00
|
|
|
|
|
|
|
#include <QObject>
|
2013-04-13 05:13:08 +00:00
|
|
|
#include <QTest>
|
2012-03-25 21:25:10 +00:00
|
|
|
|
|
|
|
class URITests : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2015-07-14 11:59:05 +00:00
|
|
|
private Q_SLOTS:
|
2012-03-25 21:25:10 +00:00
|
|
|
void uriTests();
|
|
|
|
};
|
|
|
|
|
2014-11-03 15:16:40 +00:00
|
|
|
#endif // BITCOIN_QT_TEST_URITESTS_H
|