aboutsummaryrefslogtreecommitdiff
path: root/src/qt/test/test_main.cpp
blob: 5b11e39ea37f64dc4c02426fbd3a3a243ff0882b (plain)
1
2
3
4
5
6
7
8
9
10
11
#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);
}