| 45 | } |
| 46 | |
| 47 | String TestUtils::get_temp_path(const String &p_suffix) { |
| 48 | const String temp_base = OS::get_singleton()->get_cache_path().path_join("godot_test"); |
| 49 | DirAccess::make_dir_absolute(temp_base); // Ensure the directory exists. |
| 50 | return temp_base.path_join(p_suffix); |
| 51 | } |
nothing calls this directly
no test coverage detected