testing v1

This commit is contained in:
2025-08-06 21:51:47 +03:00
commit 416ab1ffb1
12 changed files with 3668 additions and 0 deletions

14
main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "mainwindow.h"
#include "testinfo.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
//MainWindow w;
//w.show();
QTest::qExec(new testInfo, argc, argv);
return a.exec();
}