| 36 | #include "core/os/os.h" |
| 37 | |
| 38 | String TestUtils::get_data_path(const String &p_file) { |
| 39 | String data_path = "../tests/data"; |
| 40 | return get_executable_dir().path_join(data_path.path_join(p_file)); |
| 41 | } |
| 42 | |
| 43 | String TestUtils::get_executable_dir() { |
| 44 | return OS::get_singleton()->get_executable_path().get_base_dir(); |