mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-06 10:18:44 -05:00
16 lines
185 B
C
16 lines
185 B
C
![]() |
#ifndef URITESTS_H
|
||
|
#define URITESTS_H
|
||
|
|
||
|
#include <QTest>
|
||
|
#include <QObject>
|
||
|
|
||
|
class URITests : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private slots:
|
||
|
void uriTests();
|
||
|
};
|
||
|
|
||
|
#endif // URITESTS_H
|