mirror of
https://github.com/IRBorisov/ConceptCore.git
synced 2025-06-26 09:10:37 +03:00
25 lines
777 B
C++
25 lines
777 B
C++
//! Unity build for RSlang tests
|
|
|
|
#define GTEST_LANG_CXX11 1
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "../src/testAsciiLexer.cpp"
|
|
#include "../src/testLiterals.cpp"
|
|
#include "../src/testAST.cpp"
|
|
#include "../src/testASTInterpreter.cpp"
|
|
#include "../src/testASTNormalizer.cpp"
|
|
#include "../src/testAuditor.cpp"
|
|
#include "../src/testParser.cpp"
|
|
#include "../src/testInterpreter.cpp"
|
|
#include "../src/testLogger.cpp"
|
|
#include "../src/testRSExpr.cpp"
|
|
#include "../src/testRSGenerator.cpp"
|
|
#include "../src/testMathLexer.cpp"
|
|
#include "../src/testRSParser.cpp"
|
|
#include "../src/testRSToken.cpp"
|
|
#include "../src/testSDCompact.cpp"
|
|
#include "../src/testValueAuditor.cpp"
|
|
#include "../src/testTypeAuditor.cpp"
|
|
#include "../src/testStructuredData.cpp"
|
|
#include "../src/testTypification.cpp" |