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