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

23 lines
390 B
C++

#include "ObjectTests.hpp"
using namespace tp;
using namespace obj;
void testParser();
void testCore();
void testPrimitives();
void testInterpreter();
tp::ModuleManifest* objDeps[] = { &gModuleObjects, nullptr };
tp::ModuleManifest objTestModule("ObjectsTests", nullptr, nullptr, objDeps);
int main() {
testParser();
testCore();
testPrimitives();
testInterpreter();
return 0;
}