]> Git Repo - VerusCoin.git/blame - src/qt/test/test_main.cpp
Cleanup code using forward declarations.
[VerusCoin.git] / src / qt / test / test_main.cpp
CommitLineData
a41d5fe0 1
51ed9ec9 2
a41d5fe0 3#include "paymentservertests.h"
51ed9ec9
BD
4#include "uritests.h"
5
6#include <QObject>
7#include <QTest>
a41d5fe0
GA
8
9// This is all you need to run all the tests
10int main(int argc, char *argv[])
11{
12 bool fInvalid = false;
13
14 URITests test1;
15 if (QTest::qExec(&test1) != 0)
16 fInvalid = true;
17
18 PaymentServerTests test2;
19 if (QTest::qExec(&test2) != 0)
20 fInvalid = true;
21
22 return fInvalid;
23}
This page took 0.030466 seconds and 4 git commands to generate.