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

19 lines
No EOL
324 B
C++

#include "Testing.hpp"
#include "Storage.hpp"
void testLocalStorage();
int main() {
tp::ModuleManifest* deps[] = { &tp::gModuleStorage, nullptr };
tp::ModuleManifest testModule("StorageTest", nullptr, nullptr, deps);
if (!testModule.initialize()) {
return 1;
}
testLocalStorage();
testModule.deinitialize();
}