diff --git a/main.cpp b/main.cpp index 8dab993..f037672 100644 --- a/main.cpp +++ b/main.cpp @@ -1,6 +1,6 @@ #include <QCoreApplication> #include <QTest> -#include "aestest.h" +#include "unit_test/aestest.h" int main(int argc, char *argv[]) { diff --git a/qaesencryption.pro b/qaesencryption.pro index b3526ed..b261f0b 100644 --- a/qaesencryption.pro +++ b/qaesencryption.pro @@ -11,7 +11,7 @@ TEMPLATE = app SOURCES += main.cpp \ qaesencryption.cpp \ - aestest.cpp + unit_test/aestest.cpp # The following define makes your compiler emit warnings if you use # any feature of Qt which as been marked deprecated (the exact warnings @@ -26,5 +26,5 @@ DEFINES += QT_DEPRECATED_WARNINGS HEADERS += \ qaesencryption.h \ - aestest.h + unit_test/aestest.h diff --git a/aestest.cpp b/unit_test/aestest.cpp similarity index 100% rename from aestest.cpp rename to unit_test/aestest.cpp diff --git a/aestest.h b/unit_test/aestest.h similarity index 100% rename from aestest.h rename to unit_test/aestest.h