Modules/CommandLine/tests/Tests.cpp
2023-07-19 21:29:57 +03:00

19 lines
364 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();
testInterpreter();
testModule.deinitialize();
}