mirror of
https://github.com/QuasarApp/Qt-AES.git
synced 2025-04-28 22:54:31 +00:00
16 lines
213 B
C++
16 lines
213 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;
|
|
}
|
|
|
|
|