mirror of
https://github.com/QRouland/UTPass.git
synced 2025-02-11 15:07:16 +00:00
21 lines
419 B
C++
21 lines
419 B
C++
|
#include <QGuiApplication>
|
||
|
#include <QCoreApplication>
|
||
|
#include <QUrl>
|
||
|
#include <QString>
|
||
|
#include <QQuickView>
|
||
|
#include <QtQml>
|
||
|
|
||
|
|
||
|
#include <QtQuickTest/quicktest.h>
|
||
|
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
qDebug() << "Starting app from tests.cpp";
|
||
|
new QGuiApplication(argc, argv);
|
||
|
|
||
|
QGuiApplication::setApplicationName("utpass.qrouland");
|
||
|
|
||
|
return quick_test_main(argc, argv, @TESTS_PATH@, @TESTS_PATH@);
|
||
|
}
|