From d69dd98bd146c7fa87faabdba342800e45a51141 Mon Sep 17 00:00:00 2001 From: Matteo Brichese Date: Fri, 7 Jul 2017 10:10:47 -0700 Subject: [PATCH] cleaning --- main.cpp | 2 +- qaesencryption.pro | 4 ++-- aestest.cpp => unit_test/aestest.cpp | 0 aestest.h => unit_test/aestest.h | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename aestest.cpp => unit_test/aestest.cpp (100%) rename aestest.h => unit_test/aestest.h (100%) diff --git a/main.cpp b/main.cpp index 8dab993..f037672 100644 --- a/main.cpp +++ b/main.cpp @@ -1,6 +1,6 @@ #include #include -#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