123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-15
- * Changed: 2023-02-23
- *
- * */
- #ifndef LS_STD_IO_TEST_HELPER_HPP
- #define LS_STD_IO_TEST_HELPER_HPP
- #include <string>
- #include <vector>
- namespace ls::std::test
- {
- class TestHelper
- {
- public:
- TestHelper();
- ~TestHelper();
- static ::std::string getResourcesFolderLocation();
- static ::std::string getTestFolderLocation();
- private:
- static char _getFilePathSeparator();
- static ::std::string _getParent(const ::std::string &_path);
- static ::std::string _getWorkingDirectory();
- #if defined(unix) || defined(__APPLE__)
- static ::std::string _getWorkingDirectoryUnix();
- #endif
- #ifdef _WIN32
- static ::std::string _getWorkingDirectoryWindows();
- #endif
- static ::std::string _normalizePath(::std::string _path);
- static ::std::string _reduceSeparators(const ::std::string &_path);
- static ::std::string _replaceWrongSeparator(::std::string _path);
- static ::std::vector<::std::string> _splitIntoSubDirectoryNames(const ::std::string &_path);
- };
- }
- #endif
|