mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-06 10:18:44 -05:00
12 lines
199 B
C++
12 lines
199 B
C++
![]() |
#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);
|
||
|
}
|