4
0
mirror of https://github.com/QuasarApp/Qt-AES.git synced 2025-04-28 14:44:32 +00:00

15 lines
212 B
C++
Raw Normal View History

2017-06-21 16:04:33 -07:00
#include <QCoreApplication>
2017-07-07 10:03:16 -07:00
#include <QTest>
2017-07-07 10:10:47 -07:00
#include "unit_test/aestest.h"
2017-07-06 13:41:04 -07:00
2017-07-03 11:02:19 -07:00
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
2017-07-07 10:03:16 -07:00
AesTest test1;
QTest::qExec(&test1);
2017-06-21 16:04:33 -07:00
return 0;
}