aswi2021virtual-surreality-gitlab/deltarobot/libQsLog/unittest/QtTestUtil/SimpleChecker.cpp @ c137512e
1 | c137512e | Oto Šťáva | /*
|
---|---|---|---|
2 | * Copyright (C) 2008 Remko Troncon
|
||
3 | * Licensed under the MIT license.
|
||
4 | * See COPYING for license details.
|
||
5 | */
|
||
6 | |||
7 | #include <QCoreApplication>
|
||
8 | |||
9 | #include "QtTestUtil/TestRegistry.h"
|
||
10 | |||
11 | /**
|
||
12 | * Runs all tests registered with the QtTestUtil registry.
|
||
13 | */
|
||
14 | int main(int argc, char* argv[]) { |
||
15 | QCoreApplication application(argc, argv); |
||
16 | return QtTestUtil::TestRegistry::getInstance()->runTests(argc, argv); |
||
17 | }
|