blob: 1237516e5f56a1a9ecd4f882208022f0bdcb473d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef URITESTS_H
#define URITESTS_H
#include <QTest>
#include <QObject>
class URITests : public QObject
{
Q_OBJECT
private slots:
void uriTests();
};
#endif // URITESTS_H
|