Add Bitcoin-Qt test suite with some bitcoin: URL Tests to start.

This commit is contained in:
Matt Corallo
2012-02-10 17:25:36 -05:00
parent cce89ead18
commit 245484679a
5 changed files with 106 additions and 0 deletions

11
src/qt/test/test_main.cpp Normal file
View File

@@ -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);
}