mirror of
https://github.com/QuasarApp/Qt-AES.git
synced 2025-04-27 14:14:31 +00:00
15 lines
212 B
C++
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;
|
|
}
|
|
|
|
|