2014-09-05 11:11:11 +00: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 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
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void uriTests();
|
|
|
|
};
|
|
|
|
|
2014-11-03 15:16:40 +00:00
|
|
|
#endif // BITCOIN_QT_TEST_URITESTS_H
|