diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-02-12 05:52:34 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-02-12 05:52:34 -0800 |
| commit | 15b87b2ec40bdcbc7e8173c79b829fc0f550909e (patch) | |
| tree | c8e5a9f35d20d22a76b9c67dee073c0fb38bd706 /src/qt/test/test_main.cpp | |
| parent | Add export action to file menu (as long as we have a file menu, export certai... (diff) | |
| parent | Add Bitcoin-Qt test suite with some bitcoin: URL Tests to start. (diff) | |
| download | discoin-15b87b2ec40bdcbc7e8173c79b829fc0f550909e.tar.xz discoin-15b87b2ec40bdcbc7e8173c79b829fc0f550909e.zip | |
Merge pull request #807 from TheBlueMatt/bip21
Add req- prefixes to comply with BIP21.
Diffstat (limited to 'src/qt/test/test_main.cpp')
| -rw-r--r-- | src/qt/test/test_main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp new file mode 100644 index 000000000..0a08eafa1 --- /dev/null +++ b/src/qt/test/test_main.cpp @@ -0,0 +1,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);
+}
|