4
0
mirror of https://github.com/QuasarApp/Qt-AES.git synced 2025-05-01 07:54:40 +00:00

15 lines
212 B
C++

#include <QCoreApplication>
#include <QTest>
#include "unit_test/aestest.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
AesTest test1;
QTest::qExec(&test1);
return 0;
}