allow dest handler to handle folder destinations

This commit is contained in:
2023-02-24 16:49:23 +01:00
parent f0415a97b1
commit 893b434728
7 changed files with 81 additions and 20 deletions

View File

@ -138,3 +138,10 @@ ReturnValue_t FilesystemMock::truncateFile(FilesystemParams params) {
truncateCalledOnFile = params.path;
return returnvalue::OK;
}
ReturnValue_t FilesystemMock::getBaseFilename(FilesystemParams params, char *nameBuf, size_t maxLen,
size_t &baseNameLen) {
return returnvalue::OK;
}
bool FilesystemMock::isDirectory(const char *path) { return false; }