Modules/.back/old/Parser/tests/Tests.cpp
2024-03-07 12:31:48 +03:00

23 lines
404 B
C++

#include "Parser.hpp"
#include "Testing.hpp"
using namespace tp;
void testGrammar();
void testCLR();
int main(int argc, const char* argv[]) {
tp::ModuleManifest* deps[] = { &tp::gModuleParser, nullptr };
tp::ModuleManifest testModule("CommandLineTest", nullptr, nullptr, deps);
if (!testModule.initialize()) {
return 1;
}
testGrammar();
testCLR();
testModule.deinitialize();
return 0;
}