Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
test_main.cpp
Go to the documentation of this file.
1 #include <QTest>
2 #include <QObject>
3 
4 #include "uritests.h"
5 
6 // This is all you need to run all the tests
7 int main(int argc, char *argv[])
8 {
9  bool fInvalid = false;
10 
11  URITests test1;
12  if (QTest::qExec(&test1) != 0)
13  fInvalid = true;
14 
15  return fInvalid;
16 }
int main(int argc, char *argv[])
Definition: test_main.cpp:7