Returns a default [`FileTime`] struct with all times set to UNIX_EPOCH.
()
| 109 | |
| 110 | /// Returns a default [`FileTime`] struct with all times set to UNIX_EPOCH. |
| 111 | fn default_filetime() -> FileTime { |
| 112 | FileTime::from_unix_time(0, 0) |
| 113 | } |
| 114 | |
| 115 | /// Returns a [`FileTimes`] struct with custom seconds since the UNIX_EPOCH. |
| 116 | fn new_filetimes(seconds: u64) -> TestResult<FileTimes> { |
no outgoing calls
no test coverage detected