You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
401 B
C++
18 lines
401 B
C++
1 year ago
|
/*
|
||
|
* Copyright (C) 2008 Remko Troncon
|
||
|
* Licensed under the MIT license.
|
||
|
* See COPYING for license details.
|
||
|
*/
|
||
|
|
||
|
#include <QCoreApplication>
|
||
|
|
||
|
#include "QtTestUtil/TestRegistry.h"
|
||
|
|
||
|
/**
|
||
|
* Runs all tests registered with the QtTestUtil registry.
|
||
|
*/
|
||
|
int main(int argc, char* argv[]) {
|
||
|
QCoreApplication application(argc, argv);
|
||
|
return QtTestUtil::TestRegistry::getInstance()->runTests(argc, argv);
|
||
|
}
|