Files
YACReader
YACReaderLibrary
YACReaderLibraryServer
ci
common
compressed_archive
custom_widgets
dependencies
files
images
release
shortcuts_management
tests
third_party
QsLog
cmake
images
unittest
QtTestUtil
QtTestUtil.h
SimpleChecker.cpp
TestRegistration.h
TestRegistry.cpp
TestRegistry.h
CMakeLists.txt
TestLog.cpp
TestLog.h
unittest.pro
.clang-format
CMakeLists.txt
LICENSE.txt
QsLog.cpp
QsLog.h
QsLog.pri
QsLogChanges.txt
QsLogDest.cpp
QsLogDest.h
QsLogDestConsole.cpp
QsLogDestConsole.h
QsLogDestFile.cpp
QsLogDestFile.h
QsLogDestFunctor.cpp
QsLogDestFunctor.h
QsLogDisableForThisFile.h
QsLogLevel.cpp
QsLogLevel.h
QsLogMessage.cpp
QsLogMessage.h
QsLogSharedLibrary.h
QsLogSharedLibrary.pro
QsLogWindow.cpp
QsLogWindow.h
QsLogWindow.qrc
QsLogWindow.ui
QsLogWindowModel.cpp
QsLogWindowModel.h
README.md
QtWebApp
README.md
.clang-format
.editorconfig
.gitattributes
.gitignore
CHANGELOG.md
COPYING.txt
INSTALL.md
README.md
YACReader.1
YACReader.desktop
YACReader.pro
YACReader.svg
YACReaderLibrary.1
YACReaderLibrary.desktop
YACReaderLibrary.svg
azure-pipelines-build-number.yml
azure-pipelines-windows-template.yml
azure-pipelines.yml
background.png
background@2x.png
cleanOSX.sh
compileOSX.sh
config.pri
dmg.json
icon.icns
mktarball.sh
signapps.sh
yacreader/third_party/QsLog/unittest/QtTestUtil/SimpleChecker.cpp
2020-08-20 17:41:56 +02:00

18 lines
401 B
C++

/*
* 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);
}