Storage initial

This commit is contained in:
IlushaShurupov 2023-07-18 23:36:51 +03:00
parent 90998e2279
commit df3767df29
14 changed files with 551 additions and 2 deletions

19
Storage/tests/Tests.cpp Normal file
View file

@ -0,0 +1,19 @@
#include "Testing.hpp"
#include "Utils.hpp"
void testLocalStorage();
int main() {
tp::ModuleManifest* deps[] = { &tp::gModuleUtils, nullptr };
tp::ModuleManifest testModule("StorageTest", nullptr, nullptr, deps);
if (!testModule.initialize()) {
return 1;
}
testLocalStorage();
testModule.deinitialize();
}