This commit is contained in:
Ilusha 2024-03-14 08:00:35 +03:00 committed by Ilya Shurupov
parent 0b3f780ec7
commit b56829ea26
8 changed files with 52 additions and 32 deletions

View file

@ -1,5 +1,5 @@
#include "Testing.hpp"
#include "ObjectTests.hpp"
#include "parser/parser.h"
@ -53,6 +53,11 @@ TEST_DEF_STATIC(ErrorHandling) {
}
TEST_DEF(Parser) {
testBasic();
testErrorHandling();
if (objTestModule.initialize()) {
testBasic();
testErrorHandling();
objTestModule.deinitialize();
}
}