update to 0.4 preview
[novacoin.git] / src / qt / test / test_main.cpp
1 #include <QTest>\r
2 #include <QObject>\r
3 \r
4 #include "uritests.h"\r
5 \r
6 // This is all you need to run all the tests\r
7 int main(int argc, char *argv[])\r
8 {\r
9     bool fInvalid = false;\r
10 \r
11     URITests test1;\r
12     if (QTest::qExec(&test1) != 0)\r
13         fInvalid = true;\r
14 \r
15     return fInvalid;\r
16 }\r