diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8b6163b..bc86101 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -22,9 +22,9 @@ set(sources net_utils.cpp replies.cpp reply.cpp - test_helpers.cpp - test_helpers.hpp test_server.hpp + test_utils.cpp + test_utils.hpp utils.cpp) source_group(TREE "${CMAKE_CURRENT_SOURCE_DIR}" FILES ${sources}) diff --git a/test/client.cpp b/test/client.cpp index 8cdaa6a..6d66d98 100644 --- a/test/client.cpp +++ b/test/client.cpp @@ -31,8 +31,8 @@ #include #include #include -#include "test_helpers.hpp" #include "test_server.hpp" +#include "test_utils.hpp" namespace { diff --git a/test/file_list_reply.cpp b/test/file_list_reply.cpp index 771622b..0bab8f4 100644 --- a/test/file_list_reply.cpp +++ b/test/file_list_reply.cpp @@ -25,7 +25,7 @@ #include #include #include -#include "test_helpers.hpp" +#include "test_utils.hpp" namespace { diff --git a/test/replies.cpp b/test/replies.cpp index 9227807..6dc190f 100644 --- a/test/replies.cpp +++ b/test/replies.cpp @@ -24,7 +24,7 @@ #include #include -#include "test_helpers.hpp" +#include "test_utils.hpp" namespace { diff --git a/test/test_helpers.cpp b/test/test_utils.cpp similarity index 98% rename from test/test_helpers.cpp rename to test/test_utils.cpp index 0833809..dc43f51 100644 --- a/test/test_helpers.cpp +++ b/test/test_utils.cpp @@ -23,7 +23,7 @@ */ #include -#include "test_helpers.hpp" +#include "test_utils.hpp" namespace ftp::test { diff --git a/test/test_helpers.hpp b/test/test_utils.hpp similarity index 95% rename from test/test_helpers.hpp rename to test/test_utils.hpp index 6a2d883..42e1f8a 100644 --- a/test/test_helpers.hpp +++ b/test/test_utils.hpp @@ -22,8 +22,8 @@ * SOFTWARE. */ -#ifndef LIBFTP_TEST_HELPERS_HPP -#define LIBFTP_TEST_HELPERS_HPP +#ifndef LIBFTP_TEST_UTILS_HPP +#define LIBFTP_TEST_UTILS_HPP #include #include @@ -57,4 +57,4 @@ std::string LF(const std::string & str, Strings && ...strs) } } // namespace ftp::test -#endif //LIBFTP_TEST_HELPERS_HPP +#endif //LIBFTP_TEST_UTILS_HPP