diff options
| author | Matt Corallo <[email protected]> | 2012-02-10 17:25:36 -0500 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2012-02-10 17:47:00 -0500 |
| commit | 245484679adbde8df6b0b01baa24393ea20a7aed (patch) | |
| tree | 7a8a53463ab47ae2d6d8749212e8fc13199c3e05 /src/qt/test/test_main.cpp | |
| parent | Add -req prefixes to comply with BIP21. (diff) | |
| download | discoin-245484679adbde8df6b0b01baa24393ea20a7aed.tar.xz discoin-245484679adbde8df6b0b01baa24393ea20a7aed.zip | |
Add Bitcoin-Qt test suite with some bitcoin: URL Tests to start.
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);
+}
|