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