Modules/Storage/tests/Tests.cpp
2023-07-18 23:36:51 +03:00

19 lines
No EOL
320 B
C++

#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();
}