mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-10 15:18:09 +00: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
|