aboutsummaryrefslogtreecommitdiff
path: root/src/qt/test/test_main.cpp
blob: 0a08eafa1eee3671f7f28ddff2168f80c15f443b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <QTest>
#include <QObject>

#include "urltests.h"

// This is all you need to run all the tests
int main(int argc, char *argv[])
{
    URLTests test1;
    QTest::qExec(&test1);
}