mirror of
https://github.com/QuasarApp/Qt-AES.git
synced 2025-04-28 06:34:33 +00:00
17 lines
238 B
C++
17 lines
238 B
C++
#include <QCoreApplication>
|
|
#include <QTest>
|
|
|
|
#ifdef __cplusplus
|
|
#include "unit_test/aestest.h"
|
|
#endif
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
AesTest test1;
|
|
QTest::qExec(&test1);
|
|
return 0;
|
|
}
|
|
|
|
|