mirror of
https://github.com/QRouland/UTPass.git
synced 2025-02-10 22:47:15 +00:00
21 lines
423 B
C++
21 lines
423 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@");
|
|
}
|