1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef MODULES_TEST_INCLUDE_TEST_BASE_HPP_
- #define MODULES_TEST_INCLUDE_TEST_BASE_HPP_
- #include <string>
- #include <utility>
- #define PATH_MAX_LENGTH 1024
- std::string GetExePath();
- void CheckExePath(const std::string& path);
- std::pair<int, std::string> CreateTempFile(const std::string& filename_prefix);
- #endif
|