Modules/CommandLine/tests/Tests.cpp
2024-11-24 22:36:45 +03:00

18 lines
340 B
C++

#include "Tests.hpp"
#include "Testing.hpp"
int main() {
tp::ModuleManifest* deps[] = { &tp::gModuleUtils, &tp::gModuleTokenizer, nullptr };
tp::ModuleManifest testModule("CommandLineTest", nullptr, nullptr, deps);
if (!testModule.initialize()) {
return 1;
}
testCommandLine();
testModule.deinitialize();
}