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

18 lines
349 B
C++

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