Qt-AES/main.cpp
Matteo Brichese d69dd98bd1 cleaning
2017-07-07 10:10:47 -07:00

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;
}