12 lines
199 B
C++
12 lines
199 B
C++
#include <QTest>
|
|
#include <QObject>
|
|
|
|
#include "uritests.h"
|
|
|
|
// This is all you need to run all the tests
|
|
int main(int argc, char *argv[])
|
|
{
|
|
URITests test1;
|
|
QTest::qExec(&test1);
|
|
}
|